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,
Just combine your commands:
git add -A && git commit -m "comment"