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

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -