Is there an easy way to setup Notepad++’s Compare plugin as the diff tool for Git on Windows? I’m not sure whether it can be called from the command line so maybe not.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As far as I know, Notepad++ doesn’t allow custom command-line options for its plugins, so it would be a tad tricky to do so. You would need to create a wrapper script for it or call the executable directly. In my humble opinion, not worth it given that there are some very nice options for diff tools out there.
In any case,
git difftoolallows you to specify what exactly you’d like git to use for diff. You’ll add this to your.gitconfigfile:If you’d like to read more about it, here’s a link to the man page: http://www.kernel.org/pub/software/scm/git/docs/git-difftool.html