How do I know which files I actually changed since my last TFS checkout?

tfs, visual-studio-2010

Solution

Use the TFS power tools. Open a visual studio command prompt, navigate to your workspace and then type

`tfpt uu /noget /recursive`

This will undo any pending changes on files that haven't been modified

Problem

I've checked out a bunch of files from TFS in VS2010 and made changes to several of them. How can I see which files I actually made changes to?

Original source