Lijo
Lijo

Reputation: 13

TFS Command for List of checked in files

I have "Administrator" rights in TFS. I want to see the following details

  1. ChangeSet Number

  2. Files Checked in

  3. Date and Time of Checkin

  4. Comment

Can you please help me with the TFS Command for this?

Upvotes: 1

Views: 1226

Answers (2)

Robaticus
Robaticus

Reputation: 23157

What Jim says is correct, however be advised that if you have a significant change history in that path, this process can take a long time, and (at least under TFS 2008) can eat up a lot of tempDB space on your data tier.

Therefore, if you're only interested in the last 'n' check-ins, consider using the /stopafter switch. For example:

tf history "$/TeamProject/Path" /recursive /noprompt /format:detailed /stopafter:50

This will give you the most recent 50 entries.

Upvotes: 3

Jim Lamb
Jim Lamb

Reputation: 25775

Try this:

tf history $/TeamProject/Path /recursive /noprompt /format:detailed

Obviously you'll want to replace $/TeamProject/Path with the appropriate ItemSpec.

Upvotes: 1

Related Questions