up vote 488 down vote favorite
149
share [g+] share [fb]

I mistakenly added files using the command

git add file

I have not yet run git commit.

Is there a way to undo this or remove these files from the commit?

link|improve this question

11  
The second answer is the correct one, not the first: 'git rm -r --cached .' – Basil Musa May 10 '11 at 11:57
4  
The comment on the accepted answer works, and is in fact what is documented when you run git status. Just do git reset HEAD file. – ripper234 May 27 '11 at 18:02
11  
Tip: I just noticed that if you do git status, it will tell you exactly what command to enter to undo the last thing you did. Handy! – Vivian Jun 30 '11 at 13:17
But "git reset HEAD file" doesn't work... I get the "ambiguous argument 'HEAD': unknown revision or path not in the working tree." What is the reason behind not using the "git rm -r --cached" – Adam N Dec 21 '11 at 15:21
@BasilMusa The second answer sorted by age, or votes? At which point in time? And is git rm -r --cached the 'first' (incorrect) or 'second' (correct) answer to which you refer? – Kirk Broadhurst 28 mins ago
feedback

18 Answers

up vote 414 down vote accepted

You can also git reset FILE, which will remove it from the current index (the "about to be committed" area) without changing anything else.

link|improve this answer
22  
git reset HEAD file works for me – Sergey Kovalev Feb 28 '10 at 21:18
34  
To undo git add . use git reset – takeshin May 26 '10 at 10:53
16  
Nice alias for unstaging files: ` git config --global alias.unstage='reset HEAD --'` – takeshin Jun 28 '10 at 13:08
15  
^Thanks. Small correction: no equals sign. git config --global alias.unstage 'reset HEAD --' Now I can use git unstage myfile – kristi Feb 27 '11 at 23:07
5  
Rhubarb's answer is incorrect as it describes a different scenario, not what the OP asked about. 'git reset' is the correct way to unstage a file -- you can see that even by checking what git prints: "Unstaged changes after reset...". – Gilead Oct 18 '11 at 13:39
show 4 more comments
feedback

You want:

git rm --cached <added_file_to_undo>

Reasoning:

Also a newbie I first tried

git reset .

(to undo my entire initial add) only to get this (not so) helpful message:

fatal: Failed to resolve 'HEAD' as a valid ref.

turns out that this is because the HEAD ref (branch?) doesn't exist until after the first commit. That is, you'll run into the same newbie problem as me if your workflow, like mine, was something like:

  1. cd to my great new project directory to try out git, the new hotness
  2. git init
  3. git add .
  4. git status

    ... lots of crap scrolls by ...

    => Damn, I didn't want to add all of that.

  5. google "undo git add"

    => find Stackoverflow - yay

  6. git reset .

    => fatal: Failed to resolve 'HEAD' as a valid ref.

    it further turns out that there's a bug logged against the unhelpfulness of this in the mailing list.

    And that the correct solution was right there in the git status output (which, yes, I glossed over as 'crap)

...
# Changes to be committed:
#   (use "git rm --cached <file>..." to unstage)
...

And the solution indeed is to use git rm --cached FILE

Note the warnings elsewhere here - git rm deletes your local working copy of the file, but not if you use --cached. Here's the result of git help rm`:

--cached Use this option to unstage and remove paths only from the index. Working tree files, whether modified or not, will be left.

I proceed to use

git rm --cached .

to remove everything and start again. Didn't work though, because while add . is recursive, turns out rm needs -r to recurse. sigh.

git rm -r --cached .

Okay, now I'm back to where I started. Next time I'm going to use -n to do a dry run and see what will be added:

git add -n .

UPDATE Oh yeah forgot to mention - I zipped up everything to a safe place before trusting git help rm about the --cached not destroying anything (and what if I misspelled it)

link|improve this answer
29  
Hah, I just did exactly those things, right down to the search term! Cheers :) – Ben Hymers Sep 23 '09 at 15:44
3  
+1 for the detailed answer. – Josh K May 18 '10 at 22:36
8  
Great answer. +1 for the running commentary. – Kelly French May 26 '10 at 14:48
4  
The above command will actually stage the removal of all those files you wish to continue tracking - a destructive and incorrect answer indeed. – SamGoody Jun 1 '11 at 10:21
4  
This had a bad reaction for me. I did git rm -r --cached <files> and instead it tried to remove EVERYTHING for me (strange). So after that I did git reset ., and then everything got fixed, and only the changes I made had been unstaged. Strange, but got it to work. – John Doe Sep 9 '11 at 17:09
show 20 more comments
feedback

If you type:

git status

git will tell you what is staged, etc, including instructions on how to unstage:

use "git reset HEAD <file>..." to unstage

I find git does a pretty good job of nudging me to do the right thing in situations like this.

link|improve this answer
5  
Thanks for pointing this out! Somehow I always skipped those helpful tips that git was printing in front of my eyes. – Teemu Kurppa Sep 8 '09 at 11:30
1  
That seems to be the more instructive answer if you ask me. Thanks Paul! :) – Albus Dumbledore Sep 30 '11 at 16:45
feedback

To clarify: git add moves changes from the current working directory to the staging area (index).

This process is called staging. So the most natural command to stage the changes (changed files) is the obvious one:

git stage

git add is just an easier to type alias for git stage

Pity there is no git unstage nor git unadd commands. The relevant one is harder to guess or remember, but is pretty obvious:

git reset HEAD --

We can easily create an alias for this:

git config --global alias.unadd='reset HEAD --'
git config --global alias.unstage='reset HEAD --'

And finally, we have new commands:

git add file1
git stage file2
git unadd file2
git unstage file1

Personally I use even shorter aliases:

git a #for staging
git u #for unstaging
link|improve this answer
2  
+1 for the suggested alias. – ceretullis Sep 10 '10 at 22:15
For git 1.6, the "=" isn't valid syntax (git will complain about an invalid key, taking the entire "key=value" as the name). Was the "=" valid in an older version? – outis May 18 '11 at 5:56
Hmmmm ... "fatal: Failed to resolve 'HEAD' as a valid ref." – Dan Esparza Jul 16 '11 at 6:42
feedback

DO NOT USE "git rm" as suggested above, this is used to stop tracking a file and depending on the flags it may even remove it from your file system which is not what you want to do.

link|improve this answer
feedback

If you're on your initial commit and you can't use git reset, just declare "Git bankruptcy" and delete the .git folder and start over

link|improve this answer
1  
One tip is to copy your .git/config file if you have added remote origin, before deleting the folder. – Tiago Mar 8 '10 at 23:15
4  
There is no reason to throw away the whole index if it already has (otherwise) carefully selected content. Just do what git status says to do: git rm --cached <file>. – Chris Johnsen Oct 2 '10 at 6:34
feedback

Please dont use "git remove / git rm". It will remove the file.

"git reset FILE" is the correct command.

link|improve this answer
feedback

To remove new files from the staging area (and only in case of a new file), as suggested above:

git rm --cached FILE

Use rm --cached only for new files accidentally added.

link|improve this answer
feedback

git rm --cached . -r

will "un-add" everything you've added from your current directory recursively

link|improve this answer
I wasn't looking to un-add everything, just ONE specific file. – ceretullis Dec 9 '09 at 22:35
feedback

To add to the accepted anwser: if your mistakenly added file was huge, you'll probably notice that, even after removing it from the index with 'git reset', it still seems to occupy space in the .git directory. This is nothing to be worried about, the file is indeed still in the repository, but only as a "loose object", it will no be copied to other repositories (via clone, push), and the space will be eventually reclaimed - though perhaps not very soon. If you are anxious, you can run:

git gc --prune=now
link|improve this answer
feedback

run git gui and remove all the files manually or by selecting all of them and clicking on the unstage from commit button

link|improve this answer
feedback

Maybe git has evolved since you posted your question.

$> git --version
git version 1.6.2.1

Now, you can try :

git reset HEAD .

This should be what you are looking for.

link|improve this answer
feedback

As per many of the answers above you can git reset BUT, I found this great little post that actually adds the git command (well an alias) for "git unadd"

http://pivotallabs.com/users/alex/blog/articles/1001-git-unadd

Simply,

git config --global alias.unadd "reset HEAD"

now you can

git unadd foo.txt bar.txt
link|improve this answer
1  
Nice feature, but this actually enforces one's lack of familiarity with git. You won't learn anything and if you change workspaces for example you're screwed because you don't know how to do it. – Lajcik Nov 5 '10 at 14:03
Very true - and I guess I should have preface'd that it should be used as a shortcut not a replacement. – electblake Nov 11 '10 at 14:26
feedback

Just type "git reset" and it is like you never typed "git add ." since your last commit.

link|improve this answer
feedback

git remove / git rm can be used for this, with the --cached flag Try git help rm

link|improve this answer
+1 for the --cached thing, thanks ceretullis – dylanfm Dec 7 '08 at 22:53
feedback

Here's a way to avoid this vexing problem when you start a new project:

  • Create the main directory for your new project.
  • Run git init.
  • Now create a .gitignore file (even if it's empty).
  • Commit your .gitignore file.

Git makes it really hard to do git reset if you don't have any commits. If you create a tiny initial commit just for the sake of having one, after that you can git add -A and git reset as many times as you want in order to get everything right.

link|improve this answer
feedback

Note that if you fail to specify a revision then you have to include a separator. Example from my console:

$ git reset <path_to_file>
fatal: ambiguous argument '<path_to_file>': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
$ git reset -- <path_to_file>
Unstaged changes after reset:
M   <path_to_file>

(git version 1.7.5.4)

link|improve this answer
feedback

As this is your first commit, you can run this instead:

rm -fr .git

And start again from scratch! (this is not the first time I'm, going through this cycle of init, add, commit, sh!t, google add undo, oh, why not remove the repository and start again)

:)

link|improve this answer
1  
They did not say it was their first commit - they were only saying they had not committed THESE changes. This is a very dangerous recommendation. – T.W Sep 27 '11 at 23:52
feedback

Your Answer

 
or
required, but never shown

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