vote up 7 vote down star
2

The command git add [--all|-A] appears to be identical to git add .. Is this correct? If not, how do they differ?

flag

50% accept rate

2 Answers

vote up 18 vote down check

"git add -A" is equivalent to "git add .; git add -u".

The important point about "git add ." is that it looks at the working tree and adds all those paths to the staged changes if they are either changed or are new and not ignored, it does not stage any 'rm' actions.

"git add -u" looks at all the currently tracked files and stages the changes to those files if they are different or if they have been removed. It does not add any new files, it only stages changes to already tracked files.

"git add -A" is a handy shortcut for doing both.

You can test the differences out with something like this:

git init
echo Change me > change-me
echo Delete me > delete-me
git add change-me delete-me
git commit -m initial

echo OK >> change-me
rm delete-me
echo Add me > add-me

git add .
git status

git reset

git add -u
git status

git reset

git add -A
git status
link|flag
vote up 0 vote down

Poster above's answer is best. I edited mine out.

link|flag
@Ian Kelling, then delete it if you so wish. – Simucal Feb 27 at 6:52

Your Answer

Get an OpenID
or

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