-
Notifications
You must be signed in to change notification settings - Fork 30
Mozilla JSS
Endi S. Dewata edited this page Dec 4, 2022
·
1 revision
Note
|
As of April 6, 2018, JSS has been migrated from Mercurial on Mozilla to Git on Github. |
Legacy JSS information can still be found at:
$ dnf install mercurial git-remote-hg
To get JSS source repository using Mercurial:
$ hg clone https://hg.mozilla.org/projects/jss jss
If the source repository is already available, it can be updated with the following commands:
$ hg pull $ hg update
To get JSS source repository using Git:
$ git clone hg::https://hg.mozilla.org/projects/jss jss
If the source repository is already available, it can be updated with the following command:
$ git pull
$ hg import <patch> $ hg push ssh://hg.mozilla.org/projects/jss
If the JSS source repository was cloned using Mercurial, execute the following:
$ hg archive --prefix jss-4.4.3/jss/ jss-4.4.3.tar.gz
If the JSS source repository was cloned using Git, execute the following:
$ git archive --format=tar.gz --prefix jss-4.4.3/jss/ -o jss-4.4.3.tar.gz -v HEAD