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, and if git had an option like git commit -Am "commit message", it would make life that much more convenient.
Edit: Note that I've asked for git add -A, which also stages new files that have been created and removes deleted files from the staging area. git commit -am does not do this. What does?