120
edits
(Add sample workflows, and a help make this better section) |
(Add .hgrc) |
||
Line 223: | Line 223: | ||
==== Policy ==== | ==== Policy ==== | ||
The following docs are for the Mozilla project, and differ ever so slightly from what you should do for SpiderMonkey. For example, you may ignore the checkin-needed thing, and ask in #jaspi instead, and you should find reviewers in #jsapi rather than #developers. | |||
[http://www.mozilla.org/hacking/committer/ How to get commit access] | |||
[https://developer.mozilla.org/en/Creating_a_patch How to make patches] | |||
[https://developer.mozilla.org/En/Developer_Guide/How_to_Submit_a_Patch Submitting a patch] | |||
===== .hgrc file ===== | |||
This .hgrc file contains a lot of the wisdom distilled through the wiki: | |||
[extensions] | |||
mq = | |||
[ui] | |||
username = First Last <email@domain.tld> | |||
[alias] | |||
qfulldiff = diff --rev qparent:. | |||
[defaults] | |||
diff = -p -U 8 | |||
qdiff = -p -U 8 | |||
qnew = -U | |||
commit = -v | |||
[diff] | |||
git = true | |||
showfunc = true | |||
unified = 8 | |||
[paths] | |||
try = ssh://email@domain.tld@hg.mozilla.org/try/ | |||
==== Mercurial Queues ==== | ==== Mercurial Queues ==== |
edits