Search code examples
tfsmercurialtortoisehg

How to check if there are new changsets on TFS server?


I was a user of Mercurial for very long time and got very used to a hg incoming command. It shows what is the difference between my local Mercurial repository and remote server.

I was using it daily to check what others committed and together with tortoisehg I was able to quickly review commits of others.

Is there a similar command available in TFS?


Solution

  • Closest behavior to

    hg incoming
    

    is

    tf history . /recursive /format:detailed /version:W~T
    

    It shows a windowed (/format:detailed) list of changes from workspace version (W) until tip (T) on the server.