view .hgrc @ 903:08da6a1bb4c9 default tip

py3
author Jeff Hammel <k0scist@gmail.com>
date Sat, 18 Nov 2023 13:24:26 -0800
parents a4177aacf735
children
line wrap: on
line source

[ui]
username = Jeff Hammel <k0scist@gmail.com>
ignore = ~/.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