I mistakenly added files using the command "git add dir". I have not yet run "git commit". Is there a way to remove this dir and everything contained within it from the commit?

I have tried git reset dir, but it didn't work. Apparently git reset file is the way to undo it. But I have so many files and so little time.

link|improve this question

3  
git reset <path> updates the index for that path so that it matches HEAD (the current commit). It doesn't touch the working tree. – Jefromi Jan 9 '11 at 14:56
feedback

3 Answers

up vote 16 down vote accepted

To remove the entire directory,

git rm --cached -r dir
link|improve this answer
this command worked for me. Thank you. – neoneye Jan 9 '11 at 12:33
feedback

you will want to use git rm --cached -r <dir>. this command will remove the staged directory contents from the index.

if the directory was already tracked you have to find new and old files manually and unstage them …

probably run git reset <dir> after that to reset existing (and already tracked) files inside the directory

link|improve this answer
feedback

Use find and xargs:

find dir -type f | xargs git reset
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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