]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - hgrc
Use Apple's FileMerge for merge conflicts.
[config/dotfiles.git] / hgrc
1 # This is the Mercurial configuration file.
2
3
4 [ui]
5 username = Simon Ruderich <simon@ruderich.com>
6 ignore = ~/.hgignore
7 # Use Apple's FileMerge for merge conflicts.
8 merge = opendiff-merge
9
10 # Use git diffs with support for renames, binaries, access rights, etc.
11 [diff]
12 git = True
13
14 [extensions]
15 # Convert other vcs to mercurial.
16 hgext.convert =
17 # Simplify pull and merge processes.
18 hgext.fetch =
19 # Patch stack support.
20 hgext.mq =
21 # Partial commit utility.
22 hgext.record =
23
24 [hooks]
25 # Precommit hook which runs tests if they exist.
26 precommit = precommit-runtests