I need to know what changes (if any) have happened at a particular level in our source control tree. Is there some way to make such a query of TFS?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using Team Explorer:
Shows you all of the changesets that have been checked in at that level in the tree or below.
Using the tf utility:
tf history c:\localFolder -r -format:detailedHere’s a link to the tf history documentation for more details on usage: link
Using the TFS SDK to do it programatically:
Here’s a sample method based on some of our code. It takes a path, start time and end time and gives you all of the changeset details below that path in between the two specified times: