Someone by accident just commited all of their bin and obj folders to our repo (there are around 40 such folders). I would like to do a git rm -r on all of these folders. Is there a command to do this?

Thanks!

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

Have backups,

 find -type d -name bin -exec git rm -r {} \;

 find -type d -name obj -exec git rm -r {} \;

Update

With bash, you can set the shopt globstar, and be happy:

 shopt -s globstar
 git rm -r **/{obj,bin}/

Finally, if you need to remove these from the history of the repository, look at git filter-branch and read the section on 'Removing Objects' from the Pro Git Book

link|improve this answer
1  
Added reference to filter-branch and the pro git book, bash globstar option – sehe May 3 '11 at 14:16
1  
+1 for showing the 2-asterisk globstar which was new to me! – halo May 3 '11 at 14:19
-1 for not using git clean. It was meant for these situations. – Adam Dymitruk May 3 '11 at 14:22
Interactive rebase is better than filter branch in this situation. – Adam Dymitruk May 3 '11 at 14:26
1  
Not true. If it included other files that contain proper changes, mark the commit for edit. Unstage the obj/bin folder files and rebase --continue. Problem solved. I can't believe this answer got the tic. Such a fail for not using Git and resorting to "find". – Adam Dymitruk May 3 '11 at 15:51
show 4 more comments
feedback

Once you revert (will keep files in history) or reset the commit,

git reset --hard

Once these are ignored files,

git clean -xdf

I use that to clean up before rebuilding a solution. Seems vs uses some dlls even after a checkout of a different branch or a merge.

You shouldn't need to resort to filter branch. Interactive rebase will do. Remember the --preserve-merges flag.

Hope this helps.

link|improve this answer
As often mentioned, git reset --hard is dangerous advice – sehe May 3 '11 at 14:18
So is a bloated history. This assumes the user knows what they are doing, of course. – Adam Dymitruk May 3 '11 at 14:20
What would lead to bloated history? I'm unsure what you are referring to – sehe May 3 '11 at 14:23
Leaving large files such as dlls and exes in the history by using revert instead of reset. – Adam Dymitruk May 3 '11 at 14:25
And, was that something I said? I never mentioned git revert – sehe May 3 '11 at 14:30
show 1 more comment
feedback

Another option is to revert the offending commit with git revert.

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.