visual studio - Using Team Foundation Server Merge tool on any files -


is possible use merge tool 2 files, in example c:/1.txt , c:/2.txt on local machine?

enter image description here

thanks!

vsdiffmerge.exe in path "microsoft visual studio xxx\common7\ide" thing visual studio uses compare , merge files.

you can use starting vsdiffmerge.exe right command line. here blog post explaining how that. note merge tool isn't independent, still open in visual studio only.

the syntax this:

"%vs110comntools%/../ide/vsdiffmerge.exe" "file1" "file2"   "filethatservesasbase" "filethatservesastarget" /m   

for example

"%vs110comntools%/../ide/vsdiffmerge.exe" "person source.cs"   "person target.cs" "person source.cs" "person source.cs" /m   

syntax , example pulled above mentioned blog post.


Comments

Popular posts from this blog

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -