# HG changeset patch # User Augie Fackler # Date 1410297384 14400 # Node ID 82b2ba904e3ec0668760c0cefd5ced87b533b45d # Parent 38a393d59e777e2c7b05705f58a7c2b97471a3e5 clone: provide sample username = config entry in .hg/hgrc (issue4359) Some users clone from a server before ever running 'hg config --edit', so they don't see our helpful template for things like enabling the username. Attempt to give them some helpful guidance. diff -r 38a393d59e77 -r 82b2ba904e3e mercurial/hg.py --- a/mercurial/hg.py Tue Sep 09 16:51:21 2014 -0400 +++ b/mercurial/hg.py Tue Sep 09 17:16:24 2014 -0400 @@ -432,12 +432,23 @@ destpeer.pushkey('bookmarks', k, '', hex(n)) if destrepo: + template = ( + '# You may want to set your username here if it is not set\n' + "# globally, or this repository requires a different\n" + '# username from your usual configuration. If you want to\n' + '# set something for all of your repositories on this\n' + '# computer, try running the command\n' + "# 'hg config --edit --global'\n" + '# [ui]\n' + '# username = Jane Doe \n' + '[paths]\n' + 'default = %s\n' + ) fp = destrepo.opener("hgrc", "w", text=True) - fp.write("[paths]\n") u = util.url(abspath) u.passwd = None defaulturl = str(u) - fp.write("default = %s\n" % defaulturl) + fp.write(template % defaulturl) fp.close() destrepo.ui.setconfig('paths', 'default', defaulturl, 'clone') diff -r 38a393d59e77 -r 82b2ba904e3e tests/test-hgrc.t --- a/tests/test-hgrc.t Tue Sep 09 16:51:21 2014 -0400 +++ b/tests/test-hgrc.t Tue Sep 09 17:16:24 2014 -0400 @@ -28,6 +28,14 @@ 0 files updated, 0 files merged, 0 files removed, 0 files unresolved $ cd foobar $ cat .hg/hgrc + # You may want to set your username here if it is not set + # globally, or this repository requires a different + # username from your usual configuration. If you want to + # set something for all of your repositories on this + # computer, try running the command + # 'hg config --edit --global' + # [ui] + # username = Jane Doe [paths] default = $TESTTMP/foo%bar (glob) $ hg paths diff -r 38a393d59e77 -r 82b2ba904e3e tests/test-pull-http.t --- a/tests/test-pull-http.t Tue Sep 09 16:51:21 2014 -0400 +++ b/tests/test-pull-http.t Tue Sep 09 17:16:24 2014 -0400 @@ -26,6 +26,14 @@ updating to branch default 1 files updated, 0 files merged, 0 files removed, 0 files unresolved $ cat test3/.hg/hgrc + # You may want to set your username here if it is not set + # globally, or this repository requires a different + # username from your usual configuration. If you want to + # set something for all of your repositories on this + # computer, try running the command + # 'hg config --edit --global' + # [ui] + # username = Jane Doe [paths] default = http://foo@localhost:$HGPORT/ $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS diff -r 38a393d59e77 -r 82b2ba904e3e tests/test-revset-outgoing.t --- a/tests/test-revset-outgoing.t Tue Sep 09 16:51:21 2014 -0400 +++ b/tests/test-revset-outgoing.t Tue Sep 09 17:16:24 2014 -0400 @@ -36,6 +36,14 @@ $ cd b $ cat .hg/hgrc + # You may want to set your username here if it is not set + # globally, or this repository requires a different + # username from your usual configuration. If you want to + # set something for all of your repositories on this + # computer, try running the command + # 'hg config --edit --global' + # [ui] + # username = Jane Doe [paths] default = $TESTTMP/a#stable (glob) @@ -76,6 +84,14 @@ $ echo "green = ../a#default" >> .hg/hgrc $ cat .hg/hgrc + # You may want to set your username here if it is not set + # globally, or this repository requires a different + # username from your usual configuration. If you want to + # set something for all of your repositories on this + # computer, try running the command + # 'hg config --edit --global' + # [ui] + # username = Jane Doe [paths] default = $TESTTMP/a#stable (glob) green = ../a#default diff -r 38a393d59e77 -r 82b2ba904e3e tests/test-url-rev.t --- a/tests/test-url-rev.t Tue Sep 09 16:51:21 2014 -0400 +++ b/tests/test-url-rev.t Tue Sep 09 17:16:24 2014 -0400 @@ -41,6 +41,14 @@ summary: change a $ cat clone/.hg/hgrc + # You may want to set your username here if it is not set + # globally, or this repository requires a different + # username from your usual configuration. If you want to + # set something for all of your repositories on this + # computer, try running the command + # 'hg config --edit --global' + # [ui] + # username = Jane Doe [paths] default = $TESTTMP/repo#foo (glob)