comparison hgext3rd/topic/__init__.py @ 5987:e97fbded40a5

branching: merge stable into default
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 06 Aug 2021 00:04:46 +0200
parents daca8f4f7014 fa7f2e1cb504
children 01154958e0cf
comparison
equal deleted inserted replaced
5973:8a7ad6ba2654 5987:e97fbded40a5
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