Mercurial > evolve
comparison tests/test-topic.t @ 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 | 87006dcf2bb7 |
children | e97fbded40a5 43c4db536990 |
comparison
equal
deleted
inserted
replaced
5976:a65d17b1b463 | 5977:fa7f2e1cb504 |
---|---|
94 phase usually happens on push, but it is possible to update that behavior. The | 94 phase usually happens on push, but it is possible to update that behavior. The |
95 server needs to have specific config for this. | 95 server needs to have specific config for this. |
96 | 96 |
97 * everything pushed become public (the default): | 97 * everything pushed become public (the default): |
98 | 98 |
99 [phase] | 99 [phases] |
100 publish = yes | 100 publish = yes |
101 | 101 |
102 * nothing push turned public: | 102 * nothing push turned public: |
103 | 103 |
104 [phase] | 104 [phases] |
105 publish = no | 105 publish = no |
106 | 106 |
107 * topic branches are not published, changeset without topic are: | 107 * topic branches are not published, changeset without topic are: |
108 | 108 |
109 [phase] | 109 [phases] |
110 publish = no | 110 publish = no |
111 [experimental] | 111 [experimental] |
112 topic.publish-bare-branch = yes | 112 topic.publish-bare-branch = yes |
113 | 113 |
114 In addition, the topic extension adds a "--publish" flag on 'hg push'. When | 114 In addition, the topic extension adds a "--publish" flag on 'hg push'. When |