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

21  
The second answer is the correct one, not the first: 'git rm -r --cached .' – Basil Musa May 10 '11 at 11:57
5  
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
13  
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 Jan 31 at 4:30
show 3 more comments
feedback

20 Answers

up vote 604 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
26  
git reset HEAD file works for me – Sergey Kovalev Feb 28 '10 at 21:18
55  
To undo git add . use git reset – takeshin May 26 '10 at 10:53
18  
Nice alias for unstaging files: ` git config --global alias.unstage='reset HEAD --'` – takeshin Jun 28 '10 at 13:08
19  
^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 5 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
33  
Hah, I just did exactly those things, right down to the search term! Cheers :) – Ben Hymers Sep 23 '09 at 15:44
4  
+1 for the detailed answer. – Josh K May 18 '10 at 22:36
9  
Great answer. +1 for the running commentary. – Kelly S. French May 26 '10 at 14:48
8  
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 23 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
2  
That seems to be the more instructive answer if you ask me. Thanks Paul! :) – Albus Dumbledore Sep 30 '11 at 16:45
1  
Doing this in a single command for everything (not what Paul is suggesting) is also a good way to erase several hours of work if you really only wanted to unstage a few changes' worth of files. So if your changes fall into (Set A: Bad Stuff) and (Set B: Oh yeah, some Good Stuff) and you reset, Set B is G-O-N-E. Always back up the folder "manually" before resetting anything. It's easy to think a vcs always has your back and get goofy. (Yes, nearly learned the hard way, though my editor and Firebug still had what I'd accidentally erased. Heart-dropping moment, though.) – ruffin May 17 at 20:43
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
1  
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
I think the OP wants to stop tracking a mistakenly added file. "git rm --cached" seems OK though, shouldn't delete the working copy - see "man git-rm" for details. – meowsqueak Apr 11 at 22:04
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
6  
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
3  
Normally you'd use "git reset" but you can't when there's no HEAD yet. So the correct command is "git rm --cached <file>" when there are no commits, and "git reset <file>" when there are. – meowsqueak Apr 11 at 22:05
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 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

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

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

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.

Another advantage of this method is that if you run into line-ending troubles later and need to refresh all your files, it's easy:

  • Check out that initial commit. This will remove all your files.
  • Then check out your most recent commit again. This will retrieve fresh copies of your files, using your current line-ending settings.
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
2  
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

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

Use "git add -i" to remove just-added files from your upcoming commit. Example:

Adding the file you didn't want:

$ git add foo
$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       new file:   foo
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
# [...]#

Going into interactive add to undo your add (the commands typed at git here are "r" (revert), "1" (first entry in the list revert shows), 'return' to drop out of revert mode, and "q" (quit):

$ git add -i
           staged     unstaged path
  1:        +1/-0      nothing foo

*** Commands ***
  1: [s]tatus     2: [u]pdate     3: [r]evert     4: [a]dd untracked
  5: [p]atch      6: [d]iff       7: [q]uit       8: [h]elp
What now> r
           staged     unstaged path
  1:        +1/-0      nothing [f]oo
Revert>> 1
           staged     unstaged path
* 1:        +1/-0      nothing [f]oo
Revert>> 
note: foo is untracked now.
reverted one path

*** Commands ***
  1: [s]tatus     2: [u]pdate     3: [r]evert     4: [a]dd untracked
  5: [p]atch      6: [d]iff       7: [q]uit       8: [h]elp
What now> q
Bye.
$

That's it! Here's your proof, showing that "foo" is back on the untracked list:

$ git status
# On branch master
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
# [...]
#       foo
nothing added to commit but untracked files present (use "git add" to track)
$
link|improve this answer
feedback

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

link|improve this answer
Won't work if there's no last commit. – meowsqueak Apr 11 at 22:07
feedback

The command git reset --hard HEAD should work. The one thing to note is that you need to changed directory (cd) back into your normal working directory. Otherwise if you run the command from the directory you mistakenly did the git add . .... you will not be able to revert out and instead get the errors mentioned in other posts regard "unknown revision or path not in the working tree".

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
2  
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.