# HG changeset patch # User A. S. Budden # Date 1316434265 -3600 # Node ID b4b887219024ab37d2b55a34e639583e1d37f0cb # Parent 495ff793a490f2d69ee68afaa16e1f60e6478b81 Added information on using threesome with Bazaar to website. diff -r 495ff793a490 -r b4b887219024 site/index.markdown --- a/site/index.markdown Mon Sep 19 13:09:37 2011 +0100 +++ b/site/index.markdown Mon Sep 19 13:11:05 2011 +0100 @@ -63,6 +63,22 @@ **Note:** replace `mvim` with `gvim` if you're on Linux, or just plain `vim` if you prefer to keep the editor in the console. +### Bazaar + +For Bazaar 2.4 or greater, add the following line to bazaar.conf: + + bzr.mergetool.threesome = vim {base} {this} {other} {result} -c 'ThreesomeInit' + +Optionally, change the default merge tool by setting: + + bzr.default_mergetool = threesome + +For earlier versions of Bazaar, set the following entry in bazaar.conf: + + external_merge = vim %b %t %o %r -c 'ThreesomeInit' + +**Note:** replace `mvim` with `gvim` if you're on Linux, or just plain `vim` if you prefer to keep the editor in the console. + More Information ----------------