Question

Is there a way to find untracked files that are inside your solution in source control? I Couldn't find an answer.

Already tried doing a git status or svn status to see if it was using any of those. (You can probably tell by now that I'm a VB.NET noob.)

Thanks!

Était-ce utile?

La solution

From a Visual Studio command prompt use the tf folderdiff command.

something like

tf folderdiff c:\myLocalFolder $/TeamProject/MyServerFolder /recursive

You can also filter out certain types of file so if you don't want to include build output you can use something like this

tf folderdiff c:\myLocalFolder $/TeamProject/MyServerFolder /recursive /filter:!*.exe,!*.pdb

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top