Confirmed users
595
edits
(→Usage) |
|||
| Line 6: | Line 6: | ||
*hg: ssh://hg.mozilla.org/projects/places/ | *hg: ssh://hg.mozilla.org/projects/places/ | ||
== | == Merge from mozilla-central == | ||
<pre>hg pull ssh://hg.mozilla.org/mozilla-central/ | <pre>hg pull ssh://hg.mozilla.org/mozilla-central/ | ||
hg merge default | hg merge default | ||
| Line 17: | Line 12: | ||
hg push </pre> | hg push </pre> | ||
Note that if there are no different changesets with central (nothing to merge), hg merge tip will fail, | Note that if there are no different changesets with central (nothing to merge), hg merge tip will fail, use ''hg update default'' then. If mozilla central has new heads due to tagged releases, you may have to ''hg push -f'' instead, but '''check heads correctness with ''hg heads'' first'''. | ||
== Merge to central == | == Merge to central == | ||
Procedure is similar to the above one, but it also involves a final: | Procedure is similar to the above one, but it also involves a final: | ||
<pre>hg push ssh://hg.mozilla.org/mozilla-central/</pre> | <pre>hg push ssh://hg.mozilla.org/mozilla-central/</pre> | ||