On 08/10/2010 11:12 PM, Daniel Dilts wrote: > I'm trying to use git to track a Visual Studio project. Yes, that is the > dark side, but at least there is a bit of light. Anyway, the default > .gitignore ignores include most generated files (*.pdb, etc.) The problem I > have is that I have one directory where I don't want it to ignore anything > in the directory no matter what. Does anybody have an idea how I could do > that?
You can use git add -f to force add a file that is blocked by gitignore (git add -f folder/ should add everything in the folder). I don't think there is a way to have gitignore ignore certain folders though, but I may be wrong... -- Jonathan Wilson -------------------- BYU Unix Users Group http://uug.byu.edu/ The opinions expressed in this message are the responsibility of their author. They are not endorsed by BYU, the BYU CS Department or BYU-UUG. ___________________________________________________________________ List Info (unsubscribe here): http://uug.byu.edu/mailman/listinfo/uug-list
