[PATCH 1 of 2 V2] config: give a more detailed sample repo config
Jordi Gutiérrez Hermoso
jordigh at octave.org
Mon Oct 6 20:41:29 UTC 2014
# HG changeset patch
# User Jordi Gutiérrez Hermoso <jordigh at octave.org>
# Date 1412353066 14400
# Fri Oct 03 12:17:46 2014 -0400
# Node ID eaf28cae9dedb26c7a78a371b7435589a1482cf3
# Parent 889789a2ca9f19755bf0d302c8671f850e42a059
config: give a more detailed sample repo config
Some examples of the typical configurations that one might want to do
in an .hg/hgrc file. This includes a default-push that happens to
point to the same location as my-fork.
I insist on the myfork terminology for a server-side clone. Bitbucket,
Github, and others have widely popularised this meaning of "fork".
This also includes a gentle nudge to use a repo-specific username,
which is something that people might not instinctively realise is an
option.
diff --git a/mercurial/ui.py b/mercurial/ui.py
--- a/mercurial/ui.py
+++ b/mercurial/ui.py
@@ -28,6 +28,18 @@ username =
'local':
"""# example repository config (see "hg help config" for more info)
+[paths]
+# path aliases to other clones of this repo in URLs or filesystem paths
+# (see "hg help config.paths" for more info)
+#
+# default = http://example.com/hg/example-repo
+# default-push = ssh://jdoe@example.net/hg/jdoes-fork
+# my-fork = ssh://jdoe@example.net/hg/jdoes-fork
+# my-clone = /home/jdoe/jdoes-clone
+
+[ui]
+# name and email (local to this repository, optional), e.g.
+# username = Jane Doe <jdoe at example.com>
""",
'global':
More information about the Mercurial-devel
mailing list