]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - hgrc
Added ignore files for git and mercurial.
[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
8 # Use git diffs with support for renames, binaries, access rights, etc.
9 [diff]
10 git = True
11
12 [extensions]
13 # Convert other vcs to mercurial.
14 hgext.convert =
15 # Simplify pull and merge processes.
16 hgext.fetch =
17 # Patch stack support.
18 hgext.mq =
19 # Partial commit utility.
20 hgext.record =
21
22 [hooks]
23 # Precommit hook which runs tests if they exist.
24 precommit = precommit-runtests