# HG changeset patch # User Yuya Nishihara # Date 1395416772 -32400 # Node ID 8253e55930a3e85ed54075d09fa17f059d1737f4 # Parent 069bf1b821c8015596f2926090cb274e4a0ee727 clone: abort if default destination has no meaningful name (BC) If source URL has no path, default destination is resolved as '.'. It is surprising than useful, and perhaps an unexpected behavior. This change does not solve issue3880, but can avoid to clone into current directory by accident. diff -r 069bf1b821c8 -r 8253e55930a3 mercurial/hg.py --- a/mercurial/hg.py Sat Mar 22 00:46:08 2014 +0900 +++ b/mercurial/hg.py Sat Mar 22 00:46:12 2014 +0900 @@ -132,13 +132,16 @@ >>> defaultdest('/') '' >>> defaultdest('') - '.' + '' >>> defaultdest('http://example.org/') - '.' + '' >>> defaultdest('http://example.org/foo/') 'foo' ''' - return os.path.basename(os.path.normpath(util.url(source).path or '')) + path = util.url(source).path + if not path: + return '' + return os.path.basename(os.path.normpath(path)) def share(ui, source, dest=None, update=True): '''create a shared repository''' @@ -290,7 +293,8 @@ if dest is None: dest = defaultdest(source) - ui.status(_("destination directory: %s\n") % dest) + if dest: + ui.status(_("destination directory: %s\n") % dest) else: dest = ui.expandpath(dest) diff -r 069bf1b821c8 -r 8253e55930a3 tests/test-http-clone-r.t --- a/tests/test-http-clone-r.t Sat Mar 22 00:46:08 2014 +0900 +++ b/tests/test-http-clone-r.t Sat Mar 22 00:46:12 2014 +0900 @@ -197,4 +197,11 @@ checking files 4 files, 9 changesets, 7 total revisions $ cd .. + +no default destination if url has no path: + + $ hg clone http://localhost:$HGPORT/ + abort: empty destination path is not valid + [255] + $ cat error.log