Skip to content
Jean-Rémy Falleri edited this page Oct 20, 2015 · 7 revisions

To integrate GumTree with VCSs, you first have to place a gumtree command in your path that executes java -jar gumtree.jar

Git integration

To use GumTree within git you can use the following command :

git difftool -x gumtree webdiff --d

You can also set gumtree as the default diff tool by adding this content in ~/.gitconfig :

[diff]
tool = gumtree

[difftool "gumtree"]
cmd = gumtree webdiff $LOCAL $REMOTE

and then use git difftool -d.

Clone this wiki locally