Reputation: 5552
There's a git ignore pattern for all the Visual Studio projects on GitHub: gitignore/VisualStudio.gitignore. But I'm working specifically for SQL Server Business Intelligence solution in VS, and it seems that files like *.ispac
are not ignored. Is there any more specific pattern available for these projects ?
Upvotes: 22
Views: 15245
Reputation: 1410
I did some googling this morning on this and I found the following file. It looks pretty complete so I will give it a try. The *.ispac files are in the bin directory so they should be ignored anyway thanks to the rule for ignoring bin and obj.
https://www.gitignore.io/api/visualstudio
Upvotes: 20