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 do a shell
#!/bin/sh clear git add -A git commit -a -m "'$*'"
save for example git.sh and later call:
sh git.sh your commit message