Reputation: 13
I have "Administrator" rights in TFS. I want to see the following details
ChangeSet Number
Files Checked in
Date and Time of Checkin
Comment
Can you please help me with the TFS Command for this?
Upvotes: 1
Views: 1226
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
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