# HG changeset patch # User Anton Shestakov # Date 1591947763 -28800 # Node ID e31e7618cad4058a8d8a785f4956f7b03a09d3b0 # Parent 7f80558c9b8d08bac4a399231d8ab5964bb48cdf topic: substitute current topic when `--topic .` is used for outgoing/push This special case is similar to `hg outgoing/push -B .`, where currently active bookmark is used instead of `.`. diff -r 7f80558c9b8d -r e31e7618cad4 CHANGELOG --- a/CHANGELOG Thu Jun 11 18:50:29 2020 +0800 +++ b/CHANGELOG Fri Jun 12 15:42:43 2020 +0800 @@ -16,6 +16,7 @@ * topic: hg push --topic does-not-exist now doesn't try to push unrelated changesets and aborts instead + * topic: hg outgoing/push --topic . will use current topic 10.0.0 -- 2020-05-09 -------------------- diff -r 7f80558c9b8d -r e31e7618cad4 hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Thu Jun 11 18:50:29 2020 +0800 +++ b/hgext3rd/topic/__init__.py Fri Jun 12 15:42:43 2020 +0800 @@ -1269,7 +1269,10 @@ def pushoutgoingwrap(orig, ui, repo, *args, **opts): if opts.get('topic'): - topic = b'literal:' + opts['topic'] + topic = opts['topic'] + if topic == b'.': + topic = repo.currenttopic + topic = b'literal:' + topic topicrevs = repo.revs(b'topic(%s) - obsolete()', topic) opts.setdefault('rev', []).extend(topicrevs) return orig(ui, repo, *args, **opts) diff -r 7f80558c9b8d -r e31e7618cad4 tests/test-topic-push.t --- a/tests/test-topic-push.t Thu Jun 11 18:50:29 2020 +0800 +++ b/tests/test-topic-push.t Fri Jun 12 15:42:43 2020 +0800 @@ -200,6 +200,14 @@ abort: topic 'nonexistent' does not exist! [255] + $ hg up babar + switching to topic babar + 2 files updated, 0 files merged, 1 files removed, 0 files unresolved + $ hg outgoing draft --topic . + comparing with $TESTTMP/draft + searching for changes + 5 default babar draft C'A + $ hg outgoing draft --topic babar comparing with $TESTTMP/draft searching for changes