Resolve Command
Lets you resolve conflicts between changed items in your workspace and the latest or destination versions of items on the server.
Required Permissions
To use the resolve command, you must be either the workspace owner or have the global Administer workspaces permission set to Allow. You must also have the Read and Check out permissions for the items involved in a resolve operation set to Allow. For more information, see Team Foundation Server Permissions.
tf resolve [itemspec]
[/auto:(AutoMerge|TakeTheirs|KeepYours|OverwriteLocal|DeleteConflict|KeepYoursRenameTheirs)]
[/preview] [(/overridetype:overridetype | /converttotype:converttype] [/recursive] [/newname:path] [/noprompt] [/login:username, [password]]
Parameters
Argument |
Description |
---|---|
Itemspec |
Used to identify the file or folder for which to resolve version conflicts. If omitted, all items with conflicts will be included. For more information about how Visual Studio Team Foundation Server parses itemspecs to determine which items are within scope, see Command-Line Syntax (Version Control).
Note
You can specify more than one Itemspec argument.
|
overridetype |
Used with the /overridetype option. Specifies the encoding type of the files involved. For example; binary. |
converttype |
Used with the /converttotype option. Specifies the encoding type, such as "unicode." |
path |
Used with the /newname option. Specifies the new path of the affected file or folder |
username |
Provides a value to the /login option. You can specify a username value as either DOMAIN\UserName or UserName. |
Option |
Description |
---|---|
/auto |
Resolves outstanding conflicts between different versions of specified items in the current workspace using one of the following options:
|
/preview |
Displays current conflicts but does nothing with them. |
/overridetype |
Specifies optional encoding for files involved in a three-way merge. The files are treated as the specified encoding. You must determine the correct encoding. Team Foundation Server saves the resulting merge output in the specified encoding in your workspace. For more information about file encodings, see Managing File Types.
Note
You cannot specify both an /overridetype and a /converttotype.
|
/converttotype |
Specifies the encoding used for temporary conversion for the input in a three-way merge operation. The merge output is saved in the specified encoding in your workspace. This option is an advanced option and seldom used. For more information about file encodings, see Managing File Types.
Note
You cannot specify both an /overridetype and a /converttotype.
|
/recursive |
Resolves items in the specific directory and subdirectories. |
/newname |
Option used to resolve a name collision conflict. Can only be used in conjunction with AutoMerge and KeepYoursRenameTheirs. With AutoMerge, /newname is only valid with conflicts that involve rename and/or undelete. If used, you must supply a new path. |
/login |
Specifies the user name and password to authenticate the user with Team Foundation Server. |
/noprompt |
Suppresses any prompts for input. |
Remarks
You can use the Resolve command to select a resolution for pending changes that conflict with the server version.
If version conflicts are detected between your version and the version on the destination server during a get, check-in, or merge operation, a prompt appears for you to select a conflict resolution using the resolve command. You must resolve conflicts before you can check in your pending changes.
For more information on how to find the tf command-line utility, see Tf Command-Line Utility Commands.
Examples
The following example invokes the Resolve Conflicts dialog box so that you can tell Team Foundation Server how to deal with pending changes that conflict with the server version.
tf resolve
The following example attempts to resolve all conflicts by automatically merging the changes.
tf resolve /auto:automerge
See Also
Reference
Command-Line Syntax (Version Control)
Concepts
Other Resources
Tf Command-Line Utility Commands