Mercurial > evolve
comparison hgext3rd/topic/__init__.py @ 5977:fa7f2e1cb504 stable
topic: fix the help text to show how to disable publishing
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 13 Jul 2021 16:19:29 -0400 |
parents | b81fea3d59ca |
children | e97fbded40a5 1240ca13955f |
comparison
equal
deleted
inserted
replaced
5976:a65d17b1b463 | 5977:fa7f2e1cb504 |
---|---|
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 |