I have a gitignore file that makes git ignore *.dll files, and that is actually the behavior I want. However, if I want an exception ( i.e. to be able to commit foo.dll), how can I achieve this?
|
|
Use:
From gitignore:
|
|||
|
|
|
You can simply
|
|||
|
|
|
Just add According to the gitignore man page:
|
||||
|
|
|
To exclude everything in a directory, but some sub-directories, do the following:
Source: https://gist.github.com/444295 |
|||
|
|
|
Git ignores folders if you write:
but it can't add exceptions if you do:
You must write:
and only then you can except subfolders like this
|
|||
|
|