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,
You ca use -a
-a
git commit -h ... Commit contents options -a, -all commit all changed files ... git commit -a # It will add all files and also will open your default text editor.