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,
To keep it in one line use:
git add . && git commit -am "comment"
This line will add and commit all changed and added files to repository.