Is there a way to find out which changes I did not sync?

In TFS, I can do:

> tf get /preview

to find out which files have changed since the last synchronization. But I want to know what changes these file changes apply to. Something like the output of 'tf history' as applied to changes that I am missing.

Is there a built-in way to do this?

(Note: I'm a command line person, so the answer that uses the IDE is of less importance to me.)

+3
source share
2 answers

I think it tf history . /r /v:W~Twill provide you with what you need for the current directory and below.

This means starting the story from your version of the workspace ( W) to tip ( T).

+3

Snapin PowerShell PowerToys:

Update-TfsWorkspace -Whatif

.

+1

Source: https://habr.com/ru/post/1753963/


All Articles