Excerpts from jelly's message of Sat Aug 06 18:17:34 +0200 2011: > >It seems like you're looking for the -A option to "git add". > > I don't want to run "git add -A" before commit, > I want to use "git commit -A -m 'msg' " instead. if you need it that often add to your .bashrc: gcA(){ git add -A && git commit -m "$@"; } which is even faster. Marc Weber -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html