How to exclude folders when using TFS in vscode?

I am using Visual Studio Team Services extension in VS Code to register. https://marketplace.visualstudio.com/items?itemName=ms-vsts.team

Now I'm trying to check changes in an angular project, but I'm annoyed by the excluded 16000 files that are in node_modules: enter image description here

How can I exclude these files from the original control? In Visual Studio, I used a .tfignore file, how about vscode?

+3


source to share


1 answer


I had the same problem creating a clot project for dotnet core using visual studio code and TFVC. I created a .tfignore file at the root (in the same place as .gitignore).



Then I copied the content in the .gitignore file to the .tfignore file, saved and executed ...

+4


source







All Articles