tfs - Does Visual Studio Have a Built in Merge Tool? -
i don't see merge switch in visual studio's list of command line options: https://msdn.microsoft.com/en-us/library/xee0c8y7.aspx
i have used diff tool switch: \diff
i'm asking cause want use in ide tool merge tool p4vs. i've figured out how use visual studio's diff tool: using built in visual studio diff tool view p4vs's diffs
i know there is merge tool because microsoft has support team foundation server: https://msdn.microsoft.com/en-us/library/ee341461(v=expression.40).aspx#sectionsection1 there way can access merge tool?
you directly use vsdiffmerge.exe tool compare , merge local files. tool directory
c:\program files (x86)\microsoft visual studio 1x.0)\common\ide\ vsdiffmerge.exe to perform merge action need use /m, details syntax this:
"%vs140comntools%/../ide/vsdiffmerge.exe" "file1" "file2" "filethatservesasbase" "filethatservesastarget" /m more detail info please take @ blog: use visual studio diff , merging tool local files
Comments
Post a Comment