Some command shorteners for Git
Install like this:
cd ~ && git clone [email protected]:botverse/gitfuncs.git .gitfuncs
echo "source .gitfuncs/gitutils.sh" >> .bash_profile
$ gc This is my comment
=> git commit -a -m "This is my comment"
$ gp
=> git push origin [CURRENT_BRANCH]
$ ga
=> git add .
$ gac This is my comment
=> ga && gc This is my comment
$ gb branch-name
# if branch exist
=> git checkout branch-name
# if branch doesnt exist will ask for confirm
=> git checkout -b branch-name