Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 798
AngryHacker Avatar asked Apr 23 '13 16:04

AngryHacker


People also ask

How do you check changes in TFS?

Right-Click In the File List, right-click the file you want to check in and select Source Control > Check In (for selected files) or Source Control > Project > Check In All (for all files in the project). Local Toolbar In the File List, select the file(s) you want to check in.

What is Checkout for edit in TFS?

Check Out: Prevent other users from checking out and checking in the items until you check in and unlock them. Check In: Allow other users to check out the items you are checking out, but prevent them from checking in their changes until you check in your changes and unlock the items.

How do I undo the latest TFS?

Right-Click In the File List, right-click the files you want to undo and select Source Control > Undo Check Out (for selected files) or Source Control > Project > Undo Check Out All (for all files in the project).

How do I view changesets in Visual Studio?

In Solution Explorer or Source Control Explorer, browse to the folder or file, open its shortcut menu, and choose View History. In the History window, select the row that contains the changeset for which you want to view details, open its shortcut menu, and then choose Changeset Details.


1 Answers

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

like image 56
James Reed Avatar answered Oct 05 '22 21:10

James Reed