How do I use Notepad++ Compare as the diff tool in git bash/command line? -
is there way change default diff tool in gitbash?
this post seems suggest possible provided no command line examples. link: running notepad++ command line compare plugin showing compare result
since official diff plugin notepad++ seems uph0/compare
, possible setting be:
$ git config --global --add diff.guitool nppdiff $ git config --global --add difftool.nppdiff.path "c:/program files/notepad++/plugins/compareplugin/compare.exe" $ git config --global --add difftool.nppdiff.trustexitcode false
Comments
Post a Comment