Created
June 15, 2013 12:42
.tfignore file for TFS. Works similar as .gitignore file for GIT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################### | |
# Ignore .cpp files in the ProjA sub-folder and all its subfolders | |
ProjA\*.cpp | |
# | |
# Ignore .txt files in this folder | |
\*.txt | |
# | |
# Ignore .xml files in this folder and all its sub-folders | |
*.xml | |
# | |
# Ignore all files in the Temp sub-folder | |
\Temp | |
# | |
# Do not ignore .dll files in this folder nor in any of its sub-folders | |
!*.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment