Team Foundation Server: How to view changeset history

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.

Best Answer

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.

Related Topic