adding winmerge as mergetool in git -
i getting error saying
fatal bad config file line 24 in .git/config   here have in config file..
[mergetool "winmerge"]         name = winmerge         trustexitcode = true         cmd = "c:\program files (x86)\winmerge\winmergeu.exe" -u -e -dl \"local\" dr \"remote\" $local $remote $merged   line 24 line starting "cmd = "...
can tell me doing wrong here?
i tried follow this
try '/' instad of \:
cmd = "c:/program files (x86)/winmerge/winmergeu.exe" -u -e -dl \"local\" dr \"remote\" $local $remote $merged   note that, as noted before (details here), since git 2.5+, simpler config shoud enough:
git config diff.tool winmerge   git knows right mergetool.cmd syntax use winmerge.
Comments
Post a Comment