Confirmed users
763
edits
| Line 136: | Line 136: | ||
Cloning a repository for the first time can take a long time slow Internet connection. Alternatively you download the hg bundles for [http://ftp.mozilla.org/pub/mozilla.org/firefox/bundles/ mozilla-aurora] and [http://ftp.mozilla.org/pub/mozilla.org/thunderbird/bundles/ mozilla-comm]. | Cloning a repository for the first time can take a long time slow Internet connection. Alternatively you download the hg bundles for [http://ftp.mozilla.org/pub/mozilla.org/firefox/bundles/ mozilla-aurora] and [http://ftp.mozilla.org/pub/mozilla.org/thunderbird/bundles/ mozilla-comm]. | ||
* Download the bundle | |||
**$ wget http://ftp.mozilla.org/pub/mozilla.org/firefox/bundles/mozilla-aurora.hg | |||
*Create a new, empty repository: | *Create a new, empty repository: | ||
**$ hg init mozilla- | **$ hg init mozilla-aurora | ||
*Un-bundle the real mozilla- | *Un-bundle the real mozilla-aurora changes to that repository: | ||
**$ cd mozilla-central; | **$ cd mozilla-central; | ||
**$ hg unbundle /path/to/mozilla- | **$ hg unbundle /path/to/mozilla-aurora.bundle | ||
*Tell mercurial where you normally want to pull from by copying the following content into your mozilla- | *Tell mercurial where you normally want to pull from by copying the following content into your mozilla-aurora/.hg/hgrc file: | ||
**[paths] | **[paths] | ||
**default = http://hg.mozilla.org/mozilla- | **default = http://hg.mozilla.org/mozilla-aurora/ | ||
*Pull any additional changes that happened since the bundle was created: | *Pull any additional changes that happened since the bundle was created: | ||
| Line 153: | Line 155: | ||
*Update your working directory to the latest change: | *Update your working directory to the latest change: | ||
**$ hg up | **$ hg up | ||
====Create a new localization using Narro==== | ====Create a new localization using Narro==== | ||