Reputation: 809
SourceTree shows all files as Unstaged under ".vs" folder of a Visual Studio Project as you see below:
Please note that: The weird thing is other team members have same git ignore and they don't see these files.
How can we change this?
Upvotes: 0
Views: 922
Reputation: 108
Edit your .gitignore file to exclude the .vs directory.
Example:
# Exclude all .vs folder variations
**/.vs/
Upvotes: 1
Reputation: 66
You should gitignore them. You can use this.
https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
Upvotes: 1