comparison hgext3rd/topic/__init__.py @ 6001:806bdef19f1c mercurial-5.2

test-compat: merge mercurial-5.3 into mercurial-5.2
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 12 Aug 2021 22:01:00 +0200
parents fa7f2e1cb504
children e97fbded40a5 1240ca13955f
comparison
equal deleted inserted replaced
5943:bc445a876757 6001:806bdef19f1c
84 phase usually happens on push, but it is possible to update that behavior. The 84 phase usually happens on push, but it is possible to update that behavior. The
85 server needs to have specific config for this. 85 server needs to have specific config for this.
86 86
87 * everything pushed become public (the default):: 87 * everything pushed become public (the default)::
88 88
89 [phase] 89 [phases]
90 publish = yes 90 publish = yes
91 91
92 * nothing push turned public:: 92 * nothing push turned public::
93 93
94 [phase] 94 [phases]
95 publish = no 95 publish = no
96 96
97 * topic branches are not published, changeset without topic are:: 97 * topic branches are not published, changeset without topic are::
98 98
99 [phase] 99 [phases]
100 publish = no 100 publish = no
101 [experimental] 101 [experimental]
102 topic.publish-bare-branch = yes 102 topic.publish-bare-branch = yes
103 103
104 In addition, the topic extension adds a ``--publish`` flag on :hg:`push`. When 104 In addition, the topic extension adds a ``--publish`` flag on :hg:`push`. When
230 # (first pick I could think off, update as needed 230 # (first pick I could think off, update as needed
231 b'log.topic': b'green_background', 231 b'log.topic': b'green_background',
232 b'topic.active': b'green', 232 b'topic.active': b'green',
233 } 233 }
234 234
235 __version__ = b'0.22.2.dev' 235 __version__ = b'0.22.3.dev'
236 236
237 testedwith = b'4.6.2 4.7 4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8' 237 testedwith = b'4.6.2 4.7 4.8 4.9 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.8'
238 minimumhgversion = b'4.6' 238 minimumhgversion = b'4.6'
239 buglink = b'https://bz.mercurial-scm.org/' 239 buglink = b'https://bz.mercurial-scm.org/'
240 240