How do I know which files I have actually changed since the last TFS check?

I checked a bunch of files from TFS in VS2010 and made changes to some of them. How can I see which files I really made changes to?

+5
source share
3 answers

Use TFS power tools. Open the command line of the visual studio, go to the workspace and enter

tfpt uu /noget /recursive

This will cancel any pending changes to files that have not been modified.

+6
source

View -> Other Windows -> Pending Changes , ? , . ( ) - VS2010, VS2012.

+1

To add hawkke to the answer, I use CTRL-K C to show a window of pending changes - very useful.

(press ctrl-k and then the "C" key right away).

0
source

All Articles