Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
43  
The second answer is the correct one, not the first: 'git rm -r --cached .' – Basil Musa May 10 '11 at 11:57
19  
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
32  
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! – user823111 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
7  
@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 '12 at 4:30
show 5 more comments

25 Answers

up vote 1416 down vote accepted

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

share|improve this answer
49  
git reset HEAD file works for me – Sergey Kovalev Feb 28 '10 at 21:18
166  
To undo git add . use git reset – takeshin May 26 '10 at 10:53
23  
Nice alias for unstaging files: ` git config --global alias.unstage='reset HEAD --'` – takeshin Jun 28 '10 at 13:08
38  
^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
10  
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 8 more comments

You want:

git rm --cached <added_file_to_undo>

Reasoning:

When I was new this, 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.

It 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 beginner's 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 Stack Overflow - 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 .

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

share|improve this answer
65  
Hah, I just did exactly those things, right down to the search term! Cheers :) – Ben Hymers Sep 23 '09 at 15:44
25  
Great answer. +1 for the running commentary. – Kelly S. French May 26 '10 at 14:48
25  
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
8  
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
26  
This is all fun with the comments and all but is DEFINITIVELY NOT how we undo a git add . unless, as was the case if the answer, you have a COMPLETELY empty working folder to start with. Running this will remove everything from the index, true, they will remain on your working folder but your history, when committed, will be the equivalent of destroying everything and starting from scratch. the proper answer was indeed, quite simply git reset . If you do indeed follow instructions here and got really scared at the status, just do a git reset . and forget about this answer. – Newtopian Oct 28 '11 at 9:38
show 18 more comments

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.

share|improve this answer
7  
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
4  
That seems to be the more instructive answer if you ask me. Thanks Paul! :) – Albus Dumbledore Sep 30 '11 at 16:45
3  
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 '12 at 20:43
1  
This seems to be the best answer if you've had previous staged changes and commits. For brand new projects, then the git rm answer is the best. – CourtS Mar 6 at 22:35
The message will be different depending on whether the added file was already being tracked (the add only saved a new version to the cache - here it will show your message). Elsewhere, if the file was not previously staged, it will display use "git rm --cached <file>..." to unstage – leonbloy May 6 at 18:25

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
share|improve this answer
6  
+1 for the suggested alias. – ceretullis Sep 10 '10 at 22:15
2  
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

DO NOT USE "git rm" as suggested in another answer. 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.

share|improve this answer
3  
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 '12 at 22:04
1  
git rm --cached FILENAME does NOT delete the file, it removes it from the index (aka unstages). – Barry Mar 29 at 4:18

Please don't use git remove or git rm. It will remove the file. git reset FILE is the correct command.

share|improve this answer
9  
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 '12 at 22:05

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

share|improve this answer
3  
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
8  
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
@ChrisJohnsen comment is spot on. Sometimes, you want to commit all files except one: git add -A && git rm --cached EXCLUDEFILE && git commit -m 'awesome commit' (This also works when there's no previous commits, re Failed to resolve 'HEAD' problem) – Barry Mar 29 at 4:20

Run

git gui

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

share|improve this answer

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

Update (my attempt to clear some confusion that can arise from the most upvoted answers):

So, which is the real undo of git add? git reset HEAD <file> or git rm --cached <file>?

Strictly speaking, and if I'm not mistaken, none: git add cannot be undone -safely, in general.

Recall what git add <file> does:

  1. If <file> was not previously tracked, git add adds it to the cache, with its current content.

  2. If <file> was previously tracked, git add save its current content (snapshot, version) to the cache. Note that, in GIT parlance, this is also called "adding" the file, (not mere "updating" it) because we are always thinking of different file versions (snapshots) as items: we are adding a new item to the cache, to be commited.

Because of this, the question is slightly ambiguous:

I mistakenly added files using the command...

The OP seems to be thinking to case 1, and wants the undoing to remove the file (not just the current contents) from the tracked items. If we assume this is the case, then we can run git rm --cached <file>.

But we can also run git reset HEAD <file> , and this is in general preferrable, because it works in both scenarios: it also does the undoing when we wrongly added a version of an already tracked item.

Two caveats.

First: The only case in which git rm --cached <file> works and the other doesn't, is for a first commit, as pointed out in the answer. But, really, this an almost irrelevant case.

Second: Why do I claim that git reset HEAD <file> is not a true undo of git add? Because it isn't. It doesn't magically recover the previous cache content, it just syncs it from the HEAD. If our wrong git add overwrote a previous staged uncommited version, we can't recover it. Hence: no undo.

Example:

$ git init
$ echo "version 1" > file.txt
$ git add file.txt   # first add  of file.txt
$ git commit -m 'first commit'
$ echo "version 2" > file.txt
$ git add  file.txt   # stage (don't commit) "version 2" of file.txt
$ git diff --cached file.txt
-version 1
+version 2
$ echo "version 3" > file.txt   
$ git diff  file.txt
-version 2
+version 3
$ git add  file.txt    # oops we didn't mean this
$ git reset HEAD file.txt  # undo ?
$ git diff --cached file.txt  # no dif, of course. stage == HEAD
$ git diff file.txt   # we have lost irrevocably "version 2"
-version 1
+version 3

Of course, all this is rather irrelevant if we follow the usual/lazy workflow of doing 'git add' only for adding new files (case 1), and the case is 2 done together with the commit, git commit -a

share|improve this answer
git rm --cached . -r

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

share|improve this answer
I wasn't looking to un-add everything, just ONE specific file. – ceretullis Dec 9 '09 at 22:35
1  
Very helpful for removing a directory of unwanted files. – terphi Aug 9 '12 at 18:31
Also helpful if you don't have any previous commits. In absence of previous commit, git reset HEAD <file> would say fatal: Failed to resolve 'HEAD' as a valid ref. – Ranjan Jun 2 at 3:46

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.
share|improve this answer
Confirmed! Tried a git reset after a git add . and git was complaining about corrupt HEAD. Following your advice, I could git add & reset back and forth with no problems :) – Kounavi Oct 3 '12 at 21:32
The second part works, but it is a bit clumsy. How line endings are handled, depends on autocrlf value... This won't work in every project, depending the settings. – sjas Mar 29 at 11:26

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.

share|improve this answer
Mind that the --cached is a really important part here. – takeshin Apr 12 at 12:21

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)
$
share|improve this answer

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.

share|improve this answer
Sure, but then you have the followup question of how one should unadd one of two (or more) files added. The "git reset" manual does mention that "git reset <paths>" is the opposite of "git add <paths>", however. – Alex North-Keys May 15 at 13:36

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)

share|improve this answer

As per many of the other answers you can use git reset

BUT:

I found this great little post that actually adds the Git command (well an alias) for "git unadd", git unadd:

Simply,

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

Now you can

git unadd foo.txt bar.txt
share|improve this answer
3  
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

git remove or git rm can be used for this, with the --cached flag. Try:

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

git has commands for every action imaginable, but needs extensive knowledge to get things right and because of that it is counter-intuitive at best...

What you did before:

  • changed a file and used git add . or git add <file>

What you want:

  • remove file from index, but keep it versioned and left with current changes in working copy:
    git reset head <file>

  • reset file to last state from head, taking it off the index, too:
    (Think svn revert <file> IIRC.)
    git reset head <file>
    git checkout <file>
    (if you have a <branch> named like <file>, use: git checkout -- <file>)
    This is needed since git reset --hard head won't work with single files.

  • remove file from index and versioning, keeping file with changes in working copy:
    git rm --cached <file>

  • remove file from working copy and versioning completely:
    git rm <file>

share|improve this answer

To reset every file in a particular folder (and its subfolders), you can use the following command:

git reset *
share|improve this answer

This command will unstash your changes:

git reset HEAD filename.txt

You can also use

git add -p 

to add parts of files.

share|improve this answer

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

share|improve this answer
Won't work if there's no last commit. – meowsqueak Apr 11 '12 at 22:07
As it happens, there was a last commit... but I was specifically asking about removing a single file from the commit, not every file from the commit. – ceretullis Jan 31 at 16:21

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

share|improve this answer

git clean -f -d should help as it cleans up untracked files along with directories.

share|improve this answer
this is totally wrong. I was not asking about how to remove the files, I was asking about how to remove the files from the commit. Totally different. In addition to that in my case, the files are already being tracked. – ceretullis Dec 3 '12 at 19:22

You can simply reset the code by using the following code

git reset HEAD .
share|improve this answer
2  
That removes every file that has been added to the commit. I was asking how to reset a single file that was mistakenly added to the commit. – ceretullis Jan 24 at 15:15

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)

:)

share|improve this answer
3  
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. – yardena Sep 27 '11 at 23:52

protected by ceretullis Jan 31 at 16:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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