ReleaseEngineering/TryServer: Difference between revisions

Line 49: Line 49:
<pre>hg phase -f --draft qparent:tip</pre>
<pre>hg phase -f --draft qparent:tip</pre>


==== Disable hg phases with an outgoing hook ====
==== Disable hg phases with a post-push hook ====


Alternatively, you can avoid this rigamarole by disabling hg phases with an outgoing hook.  Add the following to your personal .hgrc file (~/.hgrc):
Alternatively, you can avoid this rigamarole by disabling hg phases with an outgoing hook.  Add the following to your personal .hgrc file (~/.hgrc):


<pre>
<pre>
  outgoing = hg phase --force --draft "mq()"
  post-push = hg phase --force --draft "mq()"
</pre>
</pre>


Confirmed users
206

edits