Possible Duplicate:
Make .gitignore ignore everything except a few files
Is it possible to let git ignore all files by default, unless specified in a special file?
Is it possible to let git ignore all files by default, unless specified in a special file? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can include !-lines to whitelist files: a .gitignore with:
will exclude all, but the 'included/' directory Note that if you want files matching a pattern to be un-ignored, in subdirectories, you will need to prevent the containing directories from getting ignored too. This should not pose a large problem, since git doesn't actually track directories, only files (identified by a repository path). Example:
will ignore everything, except |
|||||||||||||||
|
|
You can use .gitignore for that.
In a case where you interested in file0.txt and file1.txt. |
|||
|