view .hgrc @ 694:ebca6d85213a

File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module> from .application import * File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module> from IPython.config.configurable import SingletonConfigurable File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module> from IPython.utils.text import indent, wrap_paragraphs File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module> from IPython.external.path import path File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module> from path import * File "/home/jhammel/python/path.py", line 25 print root(path) ^
author Jeff Hammel <k0scist@gmail.com>
date Wed, 09 Jul 2014 16:26:49 -0700
parents fb4e54f50dd2
children a4177aacf735
line wrap: on
line source

[ui]
username = Jeff Hammel <k0scist@gmail.com>
ignore = /home/jhammel/.hgignore
merge = meld
verbose = True
patch =

[defaults]
commit = -v
diff = -p -U 8
qdiff = -p -U 8
qnew = -U
repository_host = k0s.org/hg
pull = --rebase
revert = --no-backup

[diff]
git = 1
showfunc = 1
unified = 8

[extensions]
hgext.mq =
rebase =
convert =
share =
purge =

[trusted]
users = jhammel
groups = jhammel

[web]
allow_archive = atom, rss, zip, bz2
contact = k0scist @ gmail

[alias]
blind-push = !($HG st -q | python -c "import sys, subprocess; print 'STUB: %s' % ' '.join([line[2:].rstrip() for line in sys.stdin.readlines() if len(line) > 2])" > blind_commit_message) && $HG commit -l blind_commit_message && $HG pull && $HG push && rm blind_commit_message
reset = !$HG revert --no-backup --all && $HG purge
sync = !$HG pull && $HG push