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 use this git alias:
git config --global alias.cam '!git commit -a -m '
So, instead of call
git add -A && git commit -m "this is a great commit"
I just do:
git cam "this is a great commit"