Fuat
Fuat

Reputation: 809

SourceTree shows all files as Unstaged under ".vs" folder of a Visual Studio Project

SourceTree shows all files as Unstaged under ".vs" folder of a Visual Studio Project as you see below:

Unstaged Files???

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

Answers (2)

nbstrat
nbstrat

Reputation: 108

Edit your .gitignore file to exclude the .vs directory.

Example:

# Exclude all .vs folder variations
**/.vs/

Upvotes: 1

Deniz Tasdogen
Deniz Tasdogen

Reputation: 66

You should gitignore them. You can use this.

https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

Upvotes: 1

Related Questions