Skip to content

Instantly share code, notes, and snippets.

@jedp
Created May 16, 2014 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedp/6c899e86087b83433369 to your computer and use it in GitHub Desktop.
Save jedp/6c899e86087b83433369 to your computer and use it in GitHub Desktop.
hgrc
[ui]
username = Jed Parsons <jedp@mozilla.com>
[diff]
# git diff is required so binary files don't break
git = 1
showfunc = True
unified = 8
[defaults]
diff=-p -U 8
commit= -v
log=-f
[paths]
# makes it easier to push to try
try = ssh://hg.mozilla.org/try
default-push = ssh://hg.mozilla.org/mozilla-inbound
[alias]
try = push -f try
[hooks]
post-try = hg phase --force --draft "mq()"
[extensions]
# I don't even remember what these are all for
color =
graphlog =
hgext.mq =
fetch =
purge =
hgext.rebase =
hgext.extdiff =
hgext.transplant =
rdiff=/Users/zeus/lib/python/rdiff.py
hgshelve=/Users/zeus/lib/python/hgshelve.py
trychooser=/Users/zeus/lib/python/trychooser
# this lets you import patches straight from bugzilla
# source: https://hg.mozilla.org/users/robarnold_cmu.edu/qimportbz
# about: http://robarnold.org/2009/06/02/hg-qimport-my-bugzilla-patch-redux.html
qimportbz=/Users/zeus/hg_extensions/qimportbz/
[extdiff]
# Creates the command 'hg cdiff' for colorized diff output
cmd.cdiff = colordiff
opts.cdiff = -wuprN
[merge-tools]
# Specify command line
kdiff3.args = $base $local $other -o $output
# Give higher priority
kdiff3.priority = 1
[bookmarks]
track.current = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment