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?

link|improve this question

feedback

4 Answers

up vote 13 down vote accepted

You can use git aliases, e.g.

git config --global alias.add-commit '!git add -A && git commit'

and use it with

git add-commit -m 'My commit message'
link|improve this answer
3  
It might be better to use && instead of ; (to abort if git add -A returns an error code for some reason). – Chris Johnsen Nov 29 '10 at 3:41
Adjusted accordingly, you are right. – Martin C. Nov 29 '10 at 11:15
Believe it or not, I tried this...and when testing git add-commit -m 'my message', it returned: "git: 'ass' is not a git-command. See 'git --help'." I scratched my head on that one for awhile until looking at the history and realizing that I aliased it incorrectly ;) Now I gotta figure out how to delete that alias :) – joedevon Dec 7 '10 at 20:10
@joedevon The alias is either in $PROJECT/.git/config or in $HOME/.gitconfig in case of the --global flag. – Martin C. Dec 7 '10 at 21:22
yes, I did find that eventually and actually just repeating the command overwrites it. – joedevon Dec 8 '10 at 18:33
feedback
git commit -a -m "message"

is an easy way to tell git to delete files you have deleted, but i generally don't recommend such catch-all workflows. git commits should in best practice be fairly atomic and only affect a few files.

git add .
git commit -m "message"

is an easy way to add all files new or modified. also, the catch-all qualification above applies. will not delete files deleted without the git rm command.

git add app
git commit -m "message"

is an easy way to add all files to the index from a single dir, in this case the app dir.

link|improve this answer
feedback

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.

link|improve this answer
Should be noted that this is specific to a Linux shell (bash and possibly others). – R. Martinho Fernandes Dec 5 '11 at 2:06
feedback

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.