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?
|
I mistakenly added files using the command
I have not yet run |
||||
| show 5 more comments |
|
You can also |
|||||||||||||||||||||
|
|
You want:
Reasoning: When I was new this, I first tried
(to undo my entire initial add), only to get this (not so) helpful message:
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:
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)
And the solution indeed is to use Note the warnings elsewhere here -
I proceed to use
to remove everything and start again. Didn't work though, because while
Okay, now I'm back to where I started. Next time I'm going to use
I zipped up everything to a safe place before trusting |
|||||||||||||||||||||
|
|
If you type:
git will tell you what is staged, etc, including instructions on how to unstage:
I find git does a pretty good job of nudging me to do the right thing in situations like this. |
|||||||||||||||||||
|
|
To clarify: This process is called staging. So the most natural command to stage the changes (changed files) is the obvious one:
Pity there is no
We can easily create an alias for this:
And finally, we have new commands:
Personally I use even shorter aliases:
|
|||||||||||
|
|
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. |
|||||||||
|
|
Please don't use |
|||||
|
|
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 |
|||||||||||
|
|
Run
and remove all the files manually or by selecting all of them and clicking on the unstage from commit button. |
||||
|
|
|
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 '
Update (my attempt to clear some confusion that can arise from the most upvoted answers): So, which is the real Strictly speaking, and if I'm not mistaken, none: Recall what
Because of this, the question is slightly ambiguous:
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 But we can also run Two caveats. First: The only case in which Second: Why do I claim that Example:
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, |
||||
|
|
will "un-add" everything you've added from your current directory recursively |
|||||||||
|
|
Here's a way to avoid this vexing problem when you start a new project:
Git makes it really hard to do 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:
|
|||||
|
|
To remove new files from the staging area (and only in case of a new file), as suggested above:
Use rm --cached only for new files accidentally added. |
||||
|
|
|
Use Adding the file you didn't want:
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):
That's it! Here's your proof, showing that "foo" is back on the untracked list:
|
||||
|
|
|
Maybe Git has evolved since you posted your question.
Now, you can try:
This should be what you are looking for. |
||||
|
|
Note that if you fail to specify a revision then you have to include a separator. Example from my console:
(git version 1.7.5.4) |
|||
|
|
|
As per many of the other answers you can use BUT: I found this great little post that actually adds the Git command (well an alias) for "git unadd", git unadd: Simply,
Now you can
|
|||||||
|
|
|
||||
|
|
|
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:
What you want:
|
||||
|
|
|
To reset every file in a particular folder (and its subfolders), you can use the following command:
|
|||
|
|
|
This command will unstash your changes:
You can also use
to add parts of files. |
||||
|
|
|
Just type "git reset" and it is like you never typed "git add ." since your last commit. |
|||||
|
|
The command |
||||
|
|
|
|
||||
|
|
You can simply reset the code by using the following code
|
|||||
|
|
As this is your first commit, you can run this instead:
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) :) |
|||||
|
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.
git reset HEAD file. – ripper234 May 27 '11 at 18:02git rm -r --cachedthe 'first' (incorrect) or 'second' (correct) answer to which you refer? – Kirk Broadhurst Jan 31 '12 at 4:30