Reputation: 721
So AFAIK most/all SO posts concern themselves with 'changes/conflicts' for a check-in.
My question is about getting the latest from VSO to local workspace.
The Output of a '"Get Latest Version" in Source Control Explorer' noted... "Conflict filename.cs - Unable to perform the get operation because you have a conflicting edit"
then... "Automatically resolved conflict: edit: filename.cs as AutoMerge"
I cannot figure out how to view what AutoMerge did.
If I 'Compare with Workspace/Lastest version' there are no differences.
Upvotes: 0
Views: 859
Reputation: 29966
Auto Resolve Conflict usually deal with the conflicts automatically in following scenarios:
Refer to Specify AutoResolve Resolution Options for details.
When you perform "Get Latest Version" action, If you didn't do any change on your local resource since last check-in, You can compare the version before "Get Latest Version" and after "Get Latest Version" from History to see what changes were made during "Auto Resolve Conflicts". But if you did some change on your local resource and did not check-in them yet, you'll cannot see what changes does "Auto Resolve Conflicts" made since there is no history recorded for the changes you made in local.
However, you can disable "Auto Resolve Conflicts" from “Tools->Options->Source Control->Visual Studio TeamFoundation Server->Uncheck Attempt to automatically resolve conflicts when they are generated" if you don't need it or select the conflict scenarios you'd like to auto merge from "Specify Conflict Type->Choose Conflicts to Resolve Window"
Upvotes: 1