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!

Was it helpful?

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top