Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Team Foundation Server: How to view changeset history

Tags:

tfs

I'd like to know how to view entire changeset history in Team Foundation Server for a given project.

this is what I want to see- starting from changeset 1 all the way to the current changeset:

show me change #, username, date of submission, description, files that were changed, etc.

note: i don't want to just see the history for a given file, or dir, i want to see the history for the whole darn thing. i.e., what happened in changeset 1, what happened in changeset 2, what happened in changeset 3, etc.

like image 711
Shai UI Avatar asked Feb 14 '11 22:02

Shai UI


People also ask

How do I view changeset details in TFS?

Find a changeset by ID In Source Control Explorer, press Ctrl + G. The Go to Changeset dialog box appears. Type the number of the changeset and choose OK. If you don't know the number, choose Find.

How do I search TFS history?

Navigate to TFS in your browser, go to code, click on changesets, then advanced search. You can filter by user and date range. You can not search by comment, but if you have a general date range in mind then you can filter it down then use the browsers search (ctrl + f).

How do I find my Azure DevOps history?

To display the History window: In Source Control Explorer, select an item, open its shortcut menu, and then choose View History.


1 Answers

you can go to the Source Control Explorer in Visual Studio and right-click on your project and select View History. This will show you the list of all changesets made to that project, who made them, the date they were made and any comment added to those changesets. if you double-click on any particular changeset, you can see the files that were changed in that one changeset.

edited to add links.

like image 82
vlad Avatar answered Sep 19 '22 17:09

vlad