-
Notifications
You must be signed in to change notification settings - Fork 177
VCS Integration
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 redirects to the command fr.labri.gumtree.client.Run webdiff
.
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
.
You can also set gumtree as a diff tool by adding this content in ~/.hgrc
:
[extensions]
hgext.extdiff =
[extdiff]
cmd.gumtree =
and then use hg gumtree
.