# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 2014-08-24 23:45:46 # Node ID 091306562855f2f7cdda332235cb77b3f2e865a5 # Parent f58b41f6708b5bb5ff43ad7f71881f5b116b2a4b config: propose some sample global config file An example of what could be suggested to the user as a global config file. Trying to be conservative here, and only suggesting the safest possible extensions. In addition to the user-level extensions, the blackbox extension is something a sysadmin might reasonable want to enable for every repo on the system. diff --git a/mercurial/config.py b/mercurial/config.py --- a/mercurial/config.py +++ b/mercurial/config.py @@ -31,7 +31,15 @@ username = 'global': """# example system-wide hg config (see "hg help config" for more info) -""", + +[extensions] +# Uncomment these lines for some possible extensions +# (see "hg help extensions" for more info) +# +# blackbox = +# progress = +# color = +# pager =""", } class config(object):