0

Given a changeset number say C12345, how does one get a list of all changesets that have followed after C12345 that may or may not have been pulled down from the TFS server?

bartonm
  • 1,600
  • 3
  • 18
  • 30
  • possible duplicate of [Using TFS TF History to determine the latest changeset](http://stackoverflow.com/questions/10338149/using-tfs-tf-history-to-determine-the-latest-changeset) – Edward Thomson Aug 05 '14 at 19:44
  • Oh interesting. I tried searching for just that. It did not come up. I think this is thread more succinct. – bartonm Aug 05 '14 at 20:31

1 Answers1

0

From the root, call:

tf history . /r /noprompt /V:C#####~T

Note: C12345 will be included at the tail of the list.

So in your case it would be:

tf history . /r /noprompt /V:C12345~T
bartonm
  • 1,600
  • 3
  • 18
  • 30