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