diff -r 05e5d68c9627 -r f1be8028a4a9 Nominal/activities/tphols09/IDW/AK-example_hgrc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Nominal/activities/tphols09/IDW/AK-example_hgrc Wed Mar 30 17:27:34 2016 +0100 @@ -0,0 +1,41 @@ +# This is an example configuration file that you could use as ~/.hgrc +# A repository can have additional configuration data in /path/to/repo/.hg/hgrc + + +[extensions] +# Many extensions come with the system, but need to be activated + +# patch queue extension. Required for "strip" +hgext.mq = + +# colored diffs, hg status +hgext.color = + +# ascii revision graph by the glog command +hgext.graphlog = + +# conveniently pull and merge in one step +# See http://mercurial.selenic.com/wiki/FetchExtension +hgext.fetch = + + + +[defaults] + +# This section sets default command line arguments for commands + +# show 5 changes by default. Change to what fits on your screen +log = -l 5 +glog = -l 5 + +# Replace lengthy commit message from fetch merges +fetch = -m "merged" + + +[ui] +# username that appears in changesets. Set to something meaningful. +# Note that this is just a comment added to changesets, not the basis +# of any authentication. +#username = krauss + +