I am trying to install CodeCompare as a git tool, however I get an error all the time that the following line is incorrect in my .gitconfig file, I am in windows using msysgit
cmd = "C:\Program Files\Devart\Code Compare\codemerge.exe" "/TF=$REMOTE" "/MF=$LOCAL" "/RF=$MERGED" "/BF=$BASE"
My merge section is as follows
[merge] tool = codecompare [mergetool "codecompare"] cmd = "C:\Program Files\Devart\Code Compare\codemerge.exe" "/TF=$REMOTE" "/MF=$LOCAL" "/RF=$MERGED" "/BF=$BASE" keepBackup = false trustExitCode = false
Is there something I am missing?
source share