So TFS supports adding a .tfignore
file in a repository to exclude files. Does it support a way to add a user-specific or machine-specific global .tfignore
file?
Git supports this with a.gitconfig
file and its excludesFile entry.
Here is my situation, why I am asking this. I use WebStorm, but my coworkers do not. So, on my computer, I want to exclude .idea
folders from TFS checkin without having to modify each repository's .tfignore
file.
Is there any support for this feature?