TFS Check In History
I am tryin开发者_开发问答g to find out the most recent branch/merge for my project (I'm migrating to a new server and want to define a starting changeset). Is there a way for me to either query the repository database or the command line tools to find out the most recent branch/merge?
You can find the history of a current folder by using the history
command.
Lets assume your entire project resides in a directory called 'project'. Using the below command will give you a list of all the changesets that impacted that directory or any of its children.
tf history project /r
精彩评论