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 Is there a way to undo this or remove these files from the commit?
| ||||
|
show 3 more comments
feedback
|
|
You can also | |||||||||||||||||||||
feedback
|
|
You want:
Reasoning: Also a newbie I first tried
(to undo my entire initial add) only to get this (not so) helpful message:
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:
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
UPDATE Oh yeah forgot to mention - I zipped up everything to a safe place before trusting | |||||||||||||||||||||
feedback
|
|
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. | |||||||||||||
feedback
|
|
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:
| |||||||||||
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. | |||
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 | |||||||||
feedback
|
|
Please dont use " " | |||||
feedback
|
|
git rm --cached . -r will "un-add" everything you've added from your current directory recursively | |||
|
feedback
|
|
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. | ||||
|
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 '
| |||
|
feedback
|
|
run | |||
|
feedback
|
|
Maybe git has evolved since you posted your question.
Now, you can try :
This should be what you are looking for. | |||
|
feedback
|
|
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) | |||
|
feedback
|
|
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:
| ||||
|
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,
now you can
| |||||||
feedback
|
|
git remove / git rm can be used for this, with the --cached flag Try git help rm | ||||
|
feedback
|
|
Use "git add -i" to remove just-added files from your upcoming commit. Example: 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:
| |||
|
feedback
|
|
Just type "git reset" and it is like you never typed "git add ." since your last commit. | |||
|
feedback
|
|
The command | ||||
|
feedback
|
|
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) :) | |||||
feedback
|
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 at 4:30