Skip to content

Instantly share code, notes, and snippets.

@ilkerde
Created March 4, 2011 16:06
Show Gist options
  • Save ilkerde/854877 to your computer and use it in GitHub Desktop.
Save ilkerde/854877 to your computer and use it in GitHub Desktop.
Finding out the "latest" (highest) revision of a local TFS workspace (aka tfs whereami)
(tf localversions . /recursive|?{$_ -match ".*;C.*"}|%{$_ -replace ".*;C",""}|group|%{$_.name}|sort -desc)[0]
tf localversions . /recursive|grep ".*;C.*"|sed "s/.*;C//g"|uniq|sort|tail -n 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment