Git - Ignore certain files contained in specific folders
Posted
by Jim
on Stack Overflow
See other posts from Stack Overflow
or by Jim
Published on 2009-06-09T17:35:22Z
Indexed on
2010/04/02
2:33 UTC
Read the original article
Hit count: 426
I'm using msysgit and have a project tree that contains many bin/ folders in the tree. Using the .gitignore file in the root of the project I need to ignore all .dll files that reside within a bin/ folder anywhere in the project tree. I've tried "bin/*.dll" but that doesn't work, I assume it is only working against the bin/ folder in the root of the project.
© Stack Overflow or respective owner