Is there any way I can do
git add -A
git commit -m \"commit message\"
in one command?
I seem to be doing those two commands a lot,
I hope this helps someone and please feel free to edit or improve. I'm not sure what the fastest way is but this certainly simplifies my code commit process by using "ohmyzsh" for Git.
git add . is shortened to ga .git commit -m "message" is shortened to gc -m "message"git push is shortened to gpgit fetch is shortened to gfgit pull origin master is shortened to ggl mastergit push origin master is shortened to ggp mastergit checkout -b is shortened to gcbgit merge is shortened to gmgit remote is shortened to grgit status is shortened to gst