Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/erikzaadi/gitcommonusagebatchfiles

Collection of batch / bash files to save time for common git usage
https://github.com/erikzaadi/gitcommonusagebatchfiles

Last synced: 17 days ago
JSON representation

Collection of batch / bash files to save time for common git usage

Awesome Lists containing this project

README

        

A collection of batch files to save some time on those reoccuring git interactions

Add And Commit

Adds all new files with "git add .", then commits the files
Needs a commit message enclosed in doublequotes as parameter

gitac "Commit Message"

Commit

Commits all modified or staged files
Needs a commit message enclosed in doublequotes as parameter

gitc "Commit Message"

Pull Origin Master

Pulls the latest changes from your origin/master and merges them

gitpl

Push Origin Master

Pushes the latest commit to your origin/master

gitpsh

Status

Shows the git status

gits

Enjoy!