diff options
Diffstat (limited to 'files/ko/mercurial_faq/index.html')
-rw-r--r-- | files/ko/mercurial_faq/index.html | 646 |
1 files changed, 646 insertions, 0 deletions
diff --git a/files/ko/mercurial_faq/index.html b/files/ko/mercurial_faq/index.html new file mode 100644 index 0000000000..c433466137 --- /dev/null +++ b/files/ko/mercurial_faq/index.html @@ -0,0 +1,646 @@ +--- +title: Mercurial 사용 +slug: Mercurial_FAQ +translation_of: Mercurial/Using_Mercurial +--- +<h2 id="How_do_I_install_Mercurial.3F" name="How_do_I_install_Mercurial.3F">Mercurial 설치와 설정</h2> +<p><a href="/en-US/docs/Installing_Mercurial" title="/en-US/docs/Installing_Mercurial">Installing Mercurial 설치</a>를 참고하세요. Mercurial이 이미 설치되어 있어도 다음 사항을 확인하세요.</p> +<ul> + <li>최신 버전을 사용하고 있는지 확인하세요</li> + <li>올바르게 설정되었는지 확인(설치페이지의 설명을 참고하세요)하세요.</li> +</ul> +<h2 id="How_can_I..." name="How_can_I...">어떻게...</h2> +<h3 id="How_can_I_check_out_Mozilla.3F" name="How_can_I_check_out_Mozilla.3F">Mozilla 코드를 어떻게 받을 수 있나요?</h3> +<p>Gecko와 Firefox의 기본 개발 저장소를 클론받기 위해서는 아래와 같이 하세요:</p> +<pre>hg clone http://hg.mozilla.org/mozilla-central/ src +cd src</pre> +<p>다른 저장소는 <a href="/En/Developer_Guide/Source_Code/Mercurial" title="https://developer.mozilla.org/En/Developer_Guide/Source_Code/Mercurial">Mercurial을 이용해서 Mozilla의 소스 코드 받기</a>를 참고하세요.</p> +<h3 id="How_can_I_edit_and_update_files.3F" name="How_can_I_edit_and_update_files.3F">어떻게 파일을 수정하고 업데이트 하나요?</h3> +<p>CVS처럼 작업 디렉토리에서 아무 파일이나 수정할 수 있습니다.</p> +<p>트리를 업데이트하는 일반적인 명령어는 다음과 같습니다:</p> +<pre class="eval">hg pull -u +</pre> +<p>하나의 디렉토리만 업데이트 하는 일은 할 수 없습니다. 전체 트리를 업데이트 해야만 합니다.</p> +<h3 id="How_can_I_diff_and_patch_files.3F" name="How_can_I_diff_and_patch_files.3F">How can I diff and patch files?</h3> +<ul> + <li><code>hg diff</code> diffs the entire tree by default. Use <code>hg diff <dir></code> to diff only the given directory. Don't forget to <code>hg add</code> any new files you are adding before generating the patch.</li> + <li>If you are changing binary files or renaming files you may want to use git style patches with <code>hg diff -g</code> to retain that sort of information in the patch.</li> + <li>When applying a patch generated by Mercurial, use <code>patch -p1</code>, not <code>patch -p0</code>. (This is due to a quirk of Mercurial diff output—it refers to fictional "a" and "b" directories. Don't ask.).</li> + <li>If you have a git style patch with renames and/or binary changes you can use <code>hg import --no-commit</code> to apply the patch to your tree or use <code>hg qimport</code> to import the patch to mq.</li> + <li>There's <a class="link-https" href="https://hg.mozilla.org/users/robarnold_cmu.edu/qimportbz" title="https://hg.mozilla.org/users/robarnold_cmu.edu/qimportbz">hg qimportbz extension</a> (<a class="external" href="http://robarnold.org/2009/06/02/hg-qimport-my-bugzilla-patch-redux.html" title="http://robarnold.org/2009/06/02/hg-qimport-my-bugzilla-patch-redux.html">blog post</a>) that lets you import patches directly from bugzilla to mq. (Since that blog post was written, the command syntax has changed. It is now: <code>hg qimport <a class="external" rel="freelink">bz://1234567</a></code>)</li> + <li>If you have it, <code>git-apply</code> can also be used to apply patches. It can handle most forms of Mercurial diff output, but it won't automatically tell Mercurial about added, copied, removed or renamed files, and it cannot reverse binary changes (except to remove added binary files).</li> +</ul> +<p>Preferred diff options are <code>hg diff -p -U 8</code> which includes 8 lines of context and shows the relevant function for the block. You can make these options default in the <a class="internal" href="/en/Mercurial_FAQ#Configuration" title="en/Mercurial FAQ#Configuration">Mercurial configuration file</a>.</p> +<h3 id="How_can_I_generate_a_patch_for_somebody_else_to_check-in_for_me.3F" name="How_can_I_generate_a_patch_for_somebody_else_to_check-in_for_me.3F">How can I generate a patch for somebody else to check-in for me?</h3> +<p>If you don't have commit access yourself, you need to attach your patches to a bug for somebody to check in. In order to do that, you should make sure that your patch has the following conditions:</p> +<ol> + <li>It has a correctly formatted author name.</li> + <li>It has a correctly formatted commit message.</li> + <li>It is generated in git style.</li> +</ol> +<p>Here is a very easy way to get this setup working using <a class="external" href="http://www.selenic.com/mercurial/wiki/index.cgi/MqExtension" style="">mq</a>. First, you need to edit your <code>~/.hgrc</code> file. You only need to do this once. Your hgrc file should have the following contents at least:</p> +<pre>[ui] +username = John Smith <john@smith.com> + +[defaults] +qnew = -Ue + +[extensions] +mq = + +[diff] +git = 1 +showfunc = 1 +unified = 8 +</pre> +<p>Now, in order to create a patch, you should enter:</p> +<pre>hg qnew name.patch +</pre> +<p>which opens up your favorite editor so that you can enter a good commit message. A good sample commit message looks like: "Bug 123456 - Change this thing to work better by doing something; r=reviewers". You don't need to enter the final commit message (for example, if you haven't received reviews yet). You can edit the commit message of the current <code>mq</code> patch at any time using <code>hg qref -e</code>.</p> +<p>The <code>~/.hgrc</code> default <code>-U</code> argument for the qnew command add the author information to the patch (using a <code>From:</code> header), and the default <code>-e</code> argument opens up the editor for you to type in a commit message.</p> +<p>Now, after editing some source code, you can use <code>hg qref</code> to update your patch file.</p> +<p>To attach the patch to the bug, you can use the file named <code>name.patch</code> located in your <code><repository>/.hg/patches</code> directory directly.</p> +<h3 id="How_do_I_check_stuff_in.3F" name="How_do_I_check_stuff_in.3F">어떻게 변경 내용을 적용(check in)하나요?</h3> +<h4 id="Required_configuration" name="Required_configuration">필수 설정</h4> +<p>변경 내용을 커밋하기 전에 이 내용을 <code>~/.hgrc</code> 파일에 추가해야 합니다:</p> +<pre class="eval">[ui] +username = Your Name <<a class="link-mailto" href="mailto:your.email@example.com" rel="freelink">your.email@example.com</a>> +</pre> +<p><a href="/en/mozilla-central" title="en/mozilla-central">mozilla-central</a>이나 다른 mozilla-hosted 저장소에 변경내용을 올리기 위해서는 커밋 권한을 가지고 있어야 하고 <code><em>(your-local-hg-root)</em>/.hg/hgrc</code> (<code>~/.hgrc</code> 파일이 <strong>아닙니다</strong>) 파일에 다음의 내용을 넣어야 합니다:</p> +<pre class="eval">[paths] +default = <span class="nowiki">http://hg.mozilla.org/mozilla-central/</span> +<strong>default-push = <span class="nowiki">ssh://hg.mozilla.org/mozilla-central/</span></strong> +</pre> +<p>또한 ssh에 hg.mozilla.org에 접속할 사용자 이름이 무엇인지 알려주어야 합니다. 이 이름은 Mozilla LDAP 계정과 연결된 사용자 이름이어야 합니다. 이를 위해서 위에 있는 default-push 경로는 좀 더 복잡하게 만들거나 (<code><span class="link-mailto">user@host.name</span>@hg.mozilla.org</code>) ~/.ssh/config에 다음 내용을 넣어서 해결할 수 있습니다:</p> +<pre class="eval">Host hg.mozilla.org +User <a class="link-mailto" href="mailto:user@host.domain" rel="freelink">user@host.domain</a> +</pre> +<h4 id="Check_what_you.27re_going_to_commit" name="Check_what_you.27re_going_to_commit">커밋하려고 하는 내용 확인</h4> +<p>다음으로 정말로 커밋하고자 하는 내용을 커밋하게 될 것인지 확인합니다(특히나 다른 까다로운 커밋을 머지할 때에 중요합니다):</p> +<pre class="eval">hg status +hg diff +</pre> +<p><code>status</code> 명령어는 작업 디렉토리의 변경된 내용이 있는 파일과 저장소(부모 리비전으로서 <code>hg parents</code>를 이용해서 볼 수 있습니다)에 있는 내용을 비교해서 보여줍니다. <code>hg diff</code>는 이 파일들의 실제 변경 내역을 하나의 diff로 보여줍니다. 더 자세한 내용을 보기 위해서 -U8 옵션을 설정할 수 있습니다.</p> +<h4 id="Commit_to_the_local_repository" name="Commit_to_the_local_repository">로컬 저장소에 커밋</h4> +<p>다음 단계로 변경내용을 <em>로컬 저장소에 커밋</em>합니다:</p> +<pre class="eval">hg commit +</pre> +<p>이렇게 하면 <code>hg status</code>로 보고된 변경내용을 매번 커밋합니다. <code>hg commit <em>filenames</em></code>을 이용해서 특정 파일이나 디렉토리만 커밋 할 수 있습니다. <code>hg commit -u "Someone Else <<a class="link-mailto" href="mailto:someone@example.com" rel="freelink">someone@example.com</a>>"를 사용해서 다른사람을 대신해서 커밋할 수도 있습니다</code>. 더 자세한 내용은 <code>hg help commit</code>을 살펴보세요.</p> +<p>새로운 파일을 저장소에 추가된고 필요없는 파일을 지우려면 다음 명령어를 사용하세요.</p> +<pre class="eval">hg addremove +</pre> +<h4 id="Check_what_you.27re_going_to_push" name="Check_what_you.27re_going_to_push">푸시하려는 내용 확인</h4> +<p>푸시를 하기 전에 어떠한 변경내용(changeset)이 푸시될지 확인할 수 있습니다.<code> 이를 위해서 outgoing</code> 명령어를 사용합니다:</p> +<pre class="eval">hg outgoing +</pre> +<p>이렇게 하면 기본 원격 저장소에 푸시할 변경내용의 목록을 보여줍니다. 다른 저장소에 푸시될 변경내용을 확인하려면 저장소 아규먼트를 추가합니다.</p> +<h4 id="Push_to_the_central_repository" name="Push_to_the_central_repository">중앙 저장소에 푸시</h4> +<p>중앙 저장소에 이 변경사항을들 푸시해서 올립니다:</p> +<pre class="eval">hg push +</pre> +<h4 id="Preventing_accidental_pushes" name="Preventing_accidental_pushes">실수로 푸시하는 일 방지</h4> +<p><code>qpush</code> 명령어가 쉽게 <code>push</code>로 잘못 입력될 수 있기 때문에, MQ 패치를 적용할 때 실수로 푸시를 하게될 수 있습니다. 실수로 푸시하는 일을 방지하기 위해서는 아래의 내용을 <code>~/.hgrc</code> 파일에 기입합니다:</p> +<pre class="eval">[hooks] +pre-push = read -p 'Are you sure you want to push to remote? (y/n): '; if test "$REPLY" != "y"; then echo 'Push cancelled'; exit 1; fi +</pre> +<p>이렇게 하면 <code>push</code> 명령어를 입력할 때 마다 사용자가 확인을 해야 하고 y 이외의 다른 내용을 입력하면 푸시가 취소됩니다.</p> +<h3 id="How_do_I_deal_with_.22abort:_push_creates_new_remote_heads.21.22.3F" name="How_do_I_deal_with_.22abort:_push_creates_new_remote_heads.21.22.3F">How do I deal with "abort: push creates new remote heads!"?</h3> +<p>Whatever you do, don't do 'push -f' like the message suggests. (It'll probably fail anyway, but don't try it.)</p> +<p>Someone pushed new commits upstream since your last pull. You then committed your patch locally and are trying to push that commit upstream; that upstream has a different tip commit that you started from.</p> +<pre> <strong>YOU</strong> ---> o 9123b7791b52 - Kaitlin Jones <span class="plain"><kaitlin@example.net></span> - Bug 123456 - Trebled fromps (r=gavin) + | +<strong>TRUNK</strong> ---> | o 306726089e22 - Robert Longson <span class="plain"><longsonr@example.com></span> - Bug 437448. New-style nsSVGString + | | + | o ba9b9a7c52a5 - Robert Longson <span class="plain"><longsonr@example.com></span> - Bug 437448. New-style nsSVGString + |/ + o f8f4360bf155 - Robert O'Callahan <span class="plain"><robert@example.org></span> - Bug 421436. Remove hack that gives</pre> +<p>There are three things you can do. In all cases, you are strongly encouraged to take steps to back up your patch (perhaps by obtaining a diff: hg log -p -r 12345 to show the patch for rev 12345).</p> +<h4 id="Using_hg_merge">Using <code>hg merge</code></h4> +<p>Run <code>hg pull</code>, then <code>hg merge</code>. If there are any merge conflicts, hg will open a merge program to try to help you resolve them manually. (If you fail to make sense of the merge tool, that's OK. Just close it; hg will detect that the conflicts weren't all resolved and spit out some <code>hg update -C</code> commands that you can use to undo and then retry the busted merge.)</p> +<p>Even if there were no conflicts, you have to commit the merge: <code>hg commit -m "Merge bug 123456"</code>.</p> +<pre> <strong>YOU</strong> ---> <span style="background-color: rgb(255, 255, 0);">o</span> 1fe7659c29a9 - Kaitlin Jones <span class="plain"><kaitlin@example.net></span> - Merge bug 123456. + <span style="background-color: rgb(255, 255, 0);">|\</span> + o <span style="background-color: rgb(255, 255, 0);">|</span> 9123b7791b52 - Kaitlin Jones <span class="plain"><kaitlin@example.net></span> - Bug 123456 - Trebled fromps (r=gavin) + | <span style="background-color: rgb(255, 255, 0);">|</span> +<strong>TRUNK</strong> ---> | o 306726089e22 - Robert Longson <span class="plain"><longsonr@example.com></span> - Bug 437448. New-style nsSVGString + | | + | o ba9b9a7c52a5 - Robert Longson <span class="plain"><longsonr@example.com></span> - Bug 437448. New-style nsSVGString + |/ + o f8f4360bf155 - Robert O'Callahan <span class="plain"><robert@example.org></span> - Bug 421436. Remove hack that gives</pre> +<p>Now you can <code>hg push</code> as normal.</p> +<p>This leaves a merge commit in the log, which some people find annoying, so it's usually better to avoid this solution.</p> +<p>If you decide to use this method, it is advantageous to enable the Mercurial <code>fetch</code> extension (by means of a <span style="background-color: #CCC;"><code>fetch =</code></span> line in the <span style="background-color: #CCC;"><code>[extensions]</code></span> section of your <code><repository>/.hg/hgrc</code> or your <code>$HOME/.hgrc</code> file) so you can do the <code>pull + merge + commit</code> sequence in one step (assuming no merge conflicts) by using the <span style="background-color: #CCC;"><code>hg fetch</code></span> command.</p> +<h4 id="Using_Mercurial_queues">Using Mercurial queues</h4> +<p>A way to solve your problem without leaving a merge commit is to import your commit into <a class="external" href="http://www.selenic.com/mercurial/wiki/index.cgi/MqExtension" style="">mq</a> control, pop it off the queue, update, and then commit it again before pushing:</p> +<pre class="eval">% <strong>hg log -l 5</strong> +415[tip] d1accb6ee840 2008-04-30 09:57 -0700 vladimir + b=430873; fast path drawImage with a canvas as source +414 3a3ecbb4873e 2008-04-30 09:55 -0700 vladimir + cvs sync +% <strong>hg qimport -r 415</strong> +<em>Turn the new commit you made into a MQ patch</em> +% <strong>hg qtop</strong> +415.diff +% <strong>hg qpop</strong> +Patch queue now empty +<em>Pop the MQ patch off the stack. At this point, the tip of your tree is also in the remote repository</em> +% <strong>hg pull -u</strong> +<em>... various pull/update messages ...</em> +% <strong>hg qpush</strong> +applying 415.diff +Now at: 415.diff +<em>Fix up conficts as necessary; if you fixed up any, run hg qrefresh first</em> +% <strong>hg incoming</strong> +comparing with <a class="external" href="ssh://hg.mozilla.org/mozilla-central/" rel="freelink">ssh://hg.mozilla.org/mozilla-central/</a> +searching for changes +no changes found +<em>Make sure nobody pushed while you were merging. Otherwise, qpop, pull and qpush again</em> +% <strong>hg qfinish 415.diff</strong> +<em>Turn the MQ patch into a regular revision</em> +% <strong>hg log -l 5</strong> +<em>verify that the log looks good, with your commit on top</em> +% <strong>hg push</strong> +</pre> +<p>If you already use mq to manage your patches, then just make sure you pull/update right before committing and pushing your patch. If you have problems with the above, it's ok to just do a simple merge as described previously.</p> +<p>In this case, if there are merge conflicts, MQ will produce <code>.rej</code> files. Some people prefer this over being thrown into a merge program.</p> +<h4 id="Using_hg_rebase">Using <code>hg rebase</code></h4> +<p>(Requires Mercurial 1.1 or higher)</p> +<p>This is the simplest and easiest way to deal with the problem. You can rebase your local changesets (including mq patches) on top of the tip using the <a class="external" href="http://www.selenic.com/mercurial/wiki/index.cgi/RebaseExtension" title="http://www.selenic.com/mercurial/wiki/index.cgi/RebaseExtension">rebase extension</a>. To do this, simply enable the extension by adding this to the following section of your <code>.hgrc</code>:</p> +<pre class="eval">[extensions] +hgext.rebase = +</pre> +<p>Now, type <code>hg pull --rebase <span style="font-family: sans-serif;">to pull and rebase your local changesets at the same time.</span></code> More details and options can be found at the <a class="external" href="http://www.selenic.com/mercurial/wiki/index.cgi/RebaseProject" title="http://www.selenic.com/mercurial/wiki/index.cgi/RebaseProject">Mercurial wiki</a>.</p> +<p>If you have conflicting changes, you'll be thrown into your preferred merge tool.</p> +<div class="note"> + <strong>Note:</strong> As of Mercurial 1.1, rebasing (especially with mq patches) might lose rename data; this is a <a class="external" href="http://www.selenic.com/mercurial/bts/issue1423" title="http://www.selenic.com/mercurial/bts/issue1423">known bug</a> that has been fixed in Mercurial 1.3. </div> +<div class="note"> + <strong>Note:</strong> If you had done a normal <code>hg pull</code> without <code>--rebase</code> after your <code>hg commit</code>, you will have to first undo that by doing <code>hg rollback</code>. Only the very last action can be undone, so if you did anything else after the <code>hg pull</code>, you're out of luck.</div> +<div class="note"> + <strong>Note:</strong> If you have local changes, hg pull --rebase (just like hg merge) will refuse to work, so you'll have to revert your local changes first:</div> +<pre class="note">hg diff > old.diff +hg revert . +hg pull --rebase +hg push +patch -p 1 -i old.diff +rm old.diff +</pre> +<h3 id="How_do_I_see_what_these_commands_will_do_before_I_do_them.3F" name="How_do_I_see_what_these_commands_will_do_before_I_do_them.3F"><span id="1224048115147S" style="display: none;"> </span>How do I see what these commands will do before I do them?</h3> +<p>If you want to see what <code>hg commit</code> will commit, run <code>hg diff</code> first.</p> +<p>If you want to see what <code>hg push</code> will push, run <code>hg outgoing</code> first.</p> +<p>If you want to see what <code>hg pull</code> will pull, run <code>hg incoming</code> first.</p> +<p>These pairs of commands all take similar arguments, for good reason. These are a good idea to use all the time when you're learning mercurial. And even once you're an expert, always doing outgoing before push is a good idea.</p> +<h3 id="How_can_I_customize_the_format_of_the_patches_Mercurial_creates.3F" name="How_can_I_customize_the_format_of_the_patches_Mercurial_creates.3F">How can I customize the format of the patches Mercurial creates?</h3> +<p>Edit your <code>~/.hgrc</code> file and add some lines like these:</p> +<pre class="eval">[defaults] +diff=-U 8 -p +qdiff=-U 8 +#for Mercurial 1.1 use: +#qdiff=-U 8 -p</pre> +<pre class="eval">[diff] +git=true +</pre> +<p>The <code>{{ mediawiki.external('defaults') }}</code> section affects the default output of the <code>hg diff</code> and <code>hg qdiff</code> commands. The options behave the same as they would on the command line. Try <code>hg help diff</code> for more info.</p> +<p>The <code>{{ mediawiki.external('diff') }}</code> section affects all patches generated by Mercurial, even <code>hg export</code> and those generated for Mercurial's internal use. You need to be a lot more careful with this, but <code>git=true</code> is recommended. Without it, Mercurial cannot diff binary files and does not track the execute mode bit. You may want to add <code>showfunc=true</code> here to get diffs that show the function being changed in each hunk, and you may want to add <code>unified=8</code> to make all diffs (including the internal ones <a class="external" href="http://www.selenic.com/mercurial/wiki/index.cgi/MqExtension" style="">mq</a> uses) have 8 lines of context. Note that this may increase the risk of mq patches failing to apply!</p> +<h3 id="How_do_I.C2.A0get_a_diff_-w.3F">How do I get a diff -w?</h3> +<p>There is a <a class="external" href="http://www.selenic.com/mercurial/bts/issue127" title="http://www.selenic.com/mercurial/bts/issue127">known issue</a> where <code>hg diff -w</code> doesn't work.</p> +<p>To get around this add the following to your <code>~/.hgrc</code> file, editing existing sections where applicable:</p> +<pre>[extensions] +hgext.extdiff = + +[extdiff] +cmd.diffw = diff +opts.diffw = -w -r -N -p -U 8 +</pre> +<p>You can, of course, add your other favourite diff options to <code>opts.diffw</code>. Once you've added this, you will now have a new hg command, <code>hg diffw</code>.</p> +<p>hg diffw -r -2 is the equivalent of hq qdiff -w for the topmost patch in the queue.</p> +<h3 id="How_do_I_generate_a_bundle.3F">How do I generate a bundle?</h3> +<p>Sometimes the tree will be under sheriff control, and they will specifically ask for a bundle. If you don't have sufficient rights to push to mozilla-central, you might also generate bundles and attach them to bugs when you add checkin-needed to a bug after it has the necessary reviews and approval.</p> +<p>Creating a bundle is quite simple. Once you have your changes all done, commit them to your local repository. You can also commit more than one changeset. Once you have everything committed, instead of pushing you'll run <code>hg bundle</code>:</p> +<pre>hg bundle outputfile.hg +</pre> +<p>By default, <code>hg bundle</code> will bundle everything that <code>hg outgoing</code> would display (and what you would push with <code>hg push</code>). You can limit how far forward you want to bundle as well by specifying a revision with <code>-r</code>. That will take all changes up until that revision.</p> +<h2 id="Backing_out_changes" name="Backing_out_changes">Backing out changes</h2> +<h3 id="Reverting_the_whole_tree_to_a_known-good_revision" name="Reverting_the_whole_tree_to_a_known-good_revision">Reverting the whole tree to a known-good revision</h3> +<p>It's easy, like using a sledgehammer is easy. But this is usually overkill.</p> +<pre class="eval">$ hg pull -u +$ <strong>hg revert --all -r a0193d83c208</strong> <em># use your known-good revision id here</em> +$ hg commit <em># be kind, include the revision id in your commit message</em> +$ hg push +</pre> +<p>There's a more precise alternative:</p> +<h3 id="Backing_out_a_single_changeset" name="Backing_out_a_single_changeset">Backing out a single changeset</h3> +<p>Suppose changeset <code>f8f4360bf155</code> broke something.</p> +<pre class="eval">$ hg pull -u +$ <strong>hg backout f8f4360bf155</strong> <em># use the revision id of the bad change here</em> +</pre> +<p>This creates and commits a new changeset that reverts all the changes in that revision.</p> +<p>If you see this message:</p> +<pre class="eval">the backout changeset is a new head - do not forget to merge +</pre> +<p>That means you need to merge, because your history now looks like this:</p> +<pre class="eval"> <strong>YOU</strong> ---> o 9123b7791b52 - Kaitlin Jones <<a class="link-mailto" href="mailto:kaitlin@example.net" rel="freelink">kaitlin@example.net</a>> - Backed out changeset f8f4360bf155 + | +<strong>TRUNK</strong> ---> | o 4e5bfb83643f - Simon Montagu <<a class="link-mailto" href="mailto:smontagu@example.org" rel="freelink">smontagu@example.org</a>> - imported patch 435856 + | | + | o 6ee23de41631 - Phil Ringnalda <<a class="link-mailto" href="mailto:philringnalda@example.com" rel="freelink">philringnalda@example.com</a>> - Bug 438526 - Opening links w + | | + | o 22baa05d0e8a - Robert O'Callahan <<a class="link-mailto" href="mailto:robert@example.org" rel="freelink">robert@example.org</a>> - Remove DOM testcase from exclusi + | | + | o c1aec2094f7e - Robert Longson <<a class="link-mailto" href="mailto:longsonr@example.com" rel="freelink">longsonr@example.com</a>> - Bug 437448. New-style nsSVGString + | | + | o 306726089e22 - Robert Longson <<a class="link-mailto" href="mailto:longsonr@example.com" rel="freelink">longsonr@example.com</a>> - Bug 437448. New-style nsSVGString + | | + | o ba9b9a7c52a5 - Robert Longson <<a class="link-mailto" href="mailto:longsonr@example.com" rel="freelink">longsonr@example.com</a>> - Bug 437448. New-style nsSVGString + |/ + o f8f4360bf155 - Robert O'Callahan <<a class="link-mailto" href="mailto:robert@example.org" rel="freelink">robert@example.org</a>> - Bug 421436. Remove hack that gives + | + ⋮ (the past) +</pre> +<p>Your backout changeset is based on an old revision. It doesn't contain more recent changes.</p> +<p>Handle this like any other merge. If you've never done a merge before, get help. (It could be trivial or it could be a huge headache. There's plenty about merging elsewhere in this FAQ.)</p> +<h3 id="Backing_out_multiple_changesets_that_are_not_at_tip" name="Backing_out_multiple_changesets_that_are_not_at_tip">Backing out multiple changesets that are not at tip</h3> +<p>Your push of many changesets was bad, but you didn't find out until after a lot of subsequent activity. You want to back out the bad but keep the probably-good changesets from the subsequent activity.</p> +<p><strong>NB</strong>: this is hard, error-prone, and will likely b0rk your local tree if you mess up. If in doubt, ask someone else to do it for you.</p> +<p>What one would <em>really</em> like to do is</p> +<pre class="eval">hg backout --from-rev $FIRST_BAD --to-rev $LAST_BAD +</pre> +<p>or, if local hg could access pushlog</p> +<pre class="eval">hg backout --push $LAST_BAD +</pre> +<p>but, since hg can't do either (yet), we're stuck. What we'll do instead is travel back in hg-time to the last bad cset, revert all changes between last-bad and last-good, then merge that reversion to the current tip. Your tree might look like</p> +<pre class="eval"> <strong>MERGE_TO</strong> ---> @ c6abfc89215a - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 485288 - Replace all usage of video autobuffer attribute with preload=auto. a=test-fix + | + o d6e8fddeb95b - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Disable test_preload_actions.html case 9 until bug 568402 is fixed. a=test-fix + | + o 571d2664ead0 - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Don't show throbber on video controls if we're not loading a resource. r=dolske a=blocking2.0 + | + o 3f7dfabab5e4 - Rich Dougherty <<a class="link-mailto" href="mailto:rich@rd.gen.nz" rel="freelink">rich@rd.gen.nz</a>>, Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Replace HTMLMediaElement.autobuffer attribute with 'preload'. r=roc a=blocking2.0 + | + o d7d9cf4ab76a - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 519897 - Supported indexed Ogg files. r=doublec + | + o 2a0e5811ece9 - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Commit merge of backout of 66dcf25705f9. a=backout + |\ + | o 958a30df30dd - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Backed out changeset 66dcf25705f9 + | | + o | 6eead86e13dd - Michael Wu <<a class="link-mailto" href="mailto:mwu@mozilla.com" rel="freelink">mwu@mozilla.com</a>> - Bug 556644 - Yet another removed-files.in update, r=rs a=blocking-beta5 + | | + o | 69c6ce104f45 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 588216: Avoid race between IO-thread loop->PostTask() and main-thread loop->SetNestableTasksAllowed() that led to Tasks being ignored. r=bent + | | + o | 73899b33ca4b - Ben Turner <<a class="link-mailto" href="mailto:bent.mozilla@gmail.com" rel="freelink">bent.mozilla@gmail.com</a>> - Bug 576716 - 'Crash [@ TypedArrayTemplate<int>::init] or [@ TypedArrayTemplate<int>::create]'. Adding a test, r=vlad a=blocker + | | + o | 3bd62d459019 - Mark Banner <<a class="link-mailto" href="mailto:bugzilla@standard8.plus.com" rel="freelink">bugzilla@standard8.plus.com</a>> - Follow up to bug 587984 bustage fix for l10n repacks. r=Pike,ted,a=bustage-fix + | | + o | e1ca9091e5a6 - Benjamin Stover <<a class="link-mailto" href="mailto:webapps@stechz.com" rel="freelink">webapps@stechz.com</a>> - Bug 575731: Make test more stable in the face of various themes. r,a=sicking + | | + o | bb200e1f52b4 - Jonas Sicking <<a class="link-mailto" href="mailto:jonas@sicking.cc" rel="freelink">jonas@sicking.cc</a>> - Bug 550959: Require version 2.5 of python. r=ted a=sicking + | | + o | 992491c618de - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (12/12): fix assertions in nsStyleAnimation triggered by part 3. r=dbaron a2.0=dbaron + | | + o | 2f078585a0f6 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (11/12): Make all assertions fatal in Declaration.h, Declaration.cpp, nsCSSDataBlock.h, nsCSSDataBlock.cpp, nsCSSValue.h, nsCSSValue.cpp, nsCSSProps.h, and nsCSSProps.cpp. r=dbaron a2.0=dbaron + | | + o | 5a9bd15fd7a8 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (10/12): Don't directly manipulate the contents of mTempData in the CSS parser. r=dbaron a2.0=dbaron + | | + o | 4bb2e0074aeb - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (9/12): Add an AddLonghandProperty method to nsCSSExpandedDataBlock. r=dbaron a2.0=dbaron + | | + o | 659a0864e035 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (8/12): remove the last MoveValue call from the CSS parser. r=dbaron a2.0=dbaron + | | + o | 980f0170d982 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (7/12): cleanup pass on css/Declaration.{h,cpp} and nsCSSDataBlock.{h,cpp}. r=dbaron a2.0=dbaron + | | + o | f09c1638d3c1 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (6/12): remove vestiges of nsCSSType. r=dbaron a2.0=dbaron + | | + o | b88472b0af90 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (5/12): eliminate ValueList as a storage type. r=dbaron a2.0=dbaron + | | + o | a3e21759b570 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (4/12): eliminate ValuePairList as a storage type. r=dbaron a2.0=dbaron + | | + o | ed89c9e297ab - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (3/12): eliminate Rect as a storage type. r=dbaron a2.0=dbaron + | | + o | 4fc85e572c38 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (2/12): eliminate ValuePair as a storage type. r=dbaron a2.0=dbaron + | | + o | 301875d4f9b6 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (1/12): Move all the CSS 'storage types' (rect, value pair, etc) to nsCSSValue.h and their code to nsCSSValue.cpp. r=dbaron a2.0=dbaron + | | + <strong>LAST_BAD</strong> ---> o | 90ad165ae21b - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part i: Use nsIWidget::CreateChild in nsIView::CreateWidget* (where possible). r=roc a=blocking-fennecb1 + | | + o | 037a5d6b376a - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part h: Add an nsIWidget::CreateChild interface to sweep (relevant to this bug) code dealing with native widgets under the widget/src/* rug. sr=roc + | | + o | f1af117d4598 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part g: Split nsIView::CreateWidget into CreateWidget, CreateWidgetForParent, and CreateWidgetForPopup in preparation of eliminating IIDs here. sr=roc + | | + o | 5bf0b315a5aa - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part f: Split out window initialization code in preparation for multiple CreateWidget* methods. r=roc + | | + o | 353da995af6f - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part e: Simplify the logic for creating popup widgets. r=roc + | | + o | 7735c00eabe9 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part d: Simplify nsView::LoadWidget and return early if it fails. r=roc + | | + o | 7b17bcefb174 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part c: Initialize default widget init data earlier so that it's always available. r=roc + | | + o | c5945b6a97ed - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part b: Remove nsIDeviceContext::SupportsNativeWidgets because it's not used meaningfully, and will be confusing in content processes. sr=roc + | | + o | 5452db293694 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part a: Add nsIView::Impl() and nsView::CreateWidget() to get rid of |static_cast<nsview*>(this)|. r=roc + | | + o | 9407827b5166 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582075, part 0.5: Add support for aInitData=NULL to the Windows nsWindow implementation. r=dougt + | | + o | 88a279b64473 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part 0: Log the repaint region bounding rect in DumpPaintEvent. r=roc + | | + o | cebb111fbfc4 - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 3: Remove nsSVGUtils::GetThebesComputationalSurface and use gfxPlatform::ScreenReferenceSurface instead. r=jwatt + | | + o | 7b3726c3a580 - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 2: Change nsIPresShell::CreateRenderingContext to GetReferenceRenderingContext, that uses the shared 1x1 surface, and use it all over the place. r=mats,sr=dbaron + | | +<strong>FIRST_BAD</strong> ---> o | b3e968d831ec - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 1: Create a single static 1x1 surface in gfxPlatform that can be used to create contexts for text measurement etc. r=vlad + | | +<strong>LAST_GOOD</strong> ---> o | 55ef0e0529bc - Mounir Lamouri <<a class="link-mailto" href="mailto:mounir.lamouri@gmail.com" rel="freelink">mounir.lamouri@gmail.com</a>> - Bug 506554 - Implement the CSS3 pseudo-classes :required and :optional for HTML. r=sicking sr=bz a2.0=blocking + | | +</int></int></pre> +<p>We want to erase all changes between <code>$FIRST_BAD</code> and <code>$LAST_BAD</code>, then merge to <code>$MERGE_TO</code></p> +<pre class="eval">$ MERGE_TO="c6abfc89215a" +$ LAST_BAD="90ad165ae21b" +$ LAST_GOOD="55ef0e0529bc" +$ hg up -r $LAST_BAD +90 files updated, 0 files merged, 4 files removed, 0 files unresolved +</pre> +<p>We just traveled back in time to the last cset we want to nuke. Now we'll revert the changes between <code>$FIRST_BAD</code> and <code>$LAST_BAD</code>.</p> +<pre class="eval">$ hg revert --all --no-backup -r $LAST_GOOD +reverting accessible/src/msaa/nsTextAccessibleWrap.cpp +reverting content/svg/content/src/SVGMotionSMILPathUtils.h +reverting content/svg/content/src/nsSVGPathElement.cpp +reverting gfx/src/nsIDeviceContext.h +reverting gfx/src/thebes/nsThebesDeviceContext.cpp +reverting gfx/src/thebes/nsThebesDeviceContext.h +reverting gfx/thebes/gfxPlatform.cpp +reverting gfx/thebes/gfxPlatform.h +reverting layout/base/nsCSSFrameConstructor.cpp +reverting layout/base/nsDocumentViewer.cpp +reverting layout/base/nsIPresShell.h +reverting layout/base/nsPresShell.cpp +reverting layout/build/nsLayoutStatics.cpp +reverting layout/generic/nsFrameFrame.cpp +reverting layout/generic/nsObjectFrame.cpp +reverting layout/generic/nsSimplePageSequence.cpp +reverting layout/generic/nsTextFrameThebes.cpp +reverting layout/inspector/src/inFlasher.cpp +reverting layout/printing/nsPrintEngine.cpp +reverting layout/svg/base/src/nsSVGForeignObjectFrame.cpp +reverting layout/svg/base/src/nsSVGGlyphFrame.cpp +reverting layout/svg/base/src/nsSVGImageFrame.cpp +reverting layout/svg/base/src/nsSVGPathGeometryFrame.cpp +reverting layout/svg/base/src/nsSVGUtils.cpp +reverting layout/svg/base/src/nsSVGUtils.h +reverting layout/xul/base/src/nsMenuPopupFrame.cpp +reverting layout/xul/base/src/nsSplitterFrame.cpp +reverting layout/xul/base/src/tree/src/nsTreeBodyFrame.cpp +reverting view/public/nsIView.h +reverting view/src/nsView.cpp +reverting view/src/nsView.h +reverting widget/public/nsIWidget.h +reverting widget/src/beos/nsWindow.h +reverting widget/src/cocoa/nsChildView.h +reverting widget/src/cocoa/nsCocoaWindow.h +reverting widget/src/windows/nsWindow.cpp +reverting widget/src/xpwidgets/nsBaseWidget.cpp +reverting widget/src/xpwidgets/nsBaseWidget.h +$ hg commit -m 'Back out bug 585817 and bug 582057' +created new head +</pre> +<p>After committing the reversion, we now have a new head that doesn't include the probably-good changes after <code>$LAST_BAD</code>.</p> +<pre class="eval">@ 1767c1fb9418 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Back out bug 585817 and bug 582057 +| +| o c6abfc89215a - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 485288 - Replace all usage of video autobuffer attribute with preload=auto. a=test-fix +| | +| o d6e8fddeb95b - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Disable test_preload_actions.html case 9 until bug 568402 is fixed. a=test-fix +| | +| o 571d2664ead0 - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Don't show throbber on video controls if we're not loading a resource. r=dolske a=blocking2.0 +| | +| o 3f7dfabab5e4 - Rich Dougherty <<a class="link-mailto" href="mailto:rich@rd.gen.nz" rel="freelink">rich@rd.gen.nz</a>>, Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Replace HTMLMediaElement.autobuffer attribute with 'preload'. r=roc a=blocking2.0 +| | +| o d7d9cf4ab76a - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 519897 - Supported indexed Ogg files. r=doublec +| | +| o 2a0e5811ece9 - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Commit merge of backout of 66dcf25705f9. a=backout +| |\ +| | o 958a30df30dd - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Backed out changeset 66dcf25705f9 +| | | +| o | 6eead86e13dd - Michael Wu <<a class="link-mailto" href="mailto:mwu@mozilla.com" rel="freelink">mwu@mozilla.com</a>> - Bug 556644 - Yet another removed-files.in update, r=rs a=blocking-beta5 +| | | +| o | 69c6ce104f45 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 588216: Avoid race between IO-thread loop->PostTask() and main-thread loop->SetNestableTasksAllowed() that led to Tasks being ignored. r=bent +| | | +| o | 73899b33ca4b - Ben Turner <<a class="link-mailto" href="mailto:bent.mozilla@gmail.com" rel="freelink">bent.mozilla@gmail.com</a>> - Bug 576716 - 'Crash [@ TypedArrayTemplate<int>::init] or [@ TypedArrayTemplate<int>::create]'. Adding a test, r=vlad a=blocker +| | | +| o | 3bd62d459019 - Mark Banner <<a class="link-mailto" href="mailto:bugzilla@standard8.plus.com" rel="freelink">bugzilla@standard8.plus.com</a>> - Follow up to bug 587984 bustage fix for l10n repacks. r=Pike,ted,a=bustage-fix +| | | +| o | e1ca9091e5a6 - Benjamin Stover <<a class="link-mailto" href="mailto:webapps@stechz.com" rel="freelink">webapps@stechz.com</a>> - Bug 575731: Make test more stable in the face of various themes. r,a=sicking +| | | +| o | bb200e1f52b4 - Jonas Sicking <<a class="link-mailto" href="mailto:jonas@sicking.cc" rel="freelink">jonas@sicking.cc</a>> - Bug 550959: Require version 2.5 of python. r=ted a=sicking +| | | +| o | 992491c618de - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (12/12): fix assertions in nsStyleAnimation triggered by part 3. r=dbaron a2.0=dbaron +| | | +| o | 2f078585a0f6 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (11/12): Make all assertions fatal in Declaration.h, Declaration.cpp, nsCSSDataBlock.h, nsCSSDataBlock.cpp, nsCSSValue.h, nsCSSValue.cpp, nsCSSProps.h, and nsCSSProps.cpp. r=dbaron a2.0=dbaron +| | | +| o | 5a9bd15fd7a8 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (10/12): Don't directly manipulate the contents of mTempData in the CSS parser. r=dbaron a2.0=dbaron +| | | +| o | 4bb2e0074aeb - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (9/12): Add an AddLonghandProperty method to nsCSSExpandedDataBlock. r=dbaron a2.0=dbaron +| | | +| o | 659a0864e035 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (8/12): remove the last MoveValue call from the CSS parser. r=dbaron a2.0=dbaron +| | | +| o | 980f0170d982 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (7/12): cleanup pass on css/Declaration.{h,cpp} and nsCSSDataBlock.{h,cpp}. r=dbaron a2.0=dbaron +| | | +| o | f09c1638d3c1 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (6/12): remove vestiges of nsCSSType. r=dbaron a2.0=dbaron +| | | +| o | b88472b0af90 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (5/12): eliminate ValueList as a storage type. r=dbaron a2.0=dbaron +| | | +| o | a3e21759b570 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (4/12): eliminate ValuePairList as a storage type. r=dbaron a2.0=dbaron +| | | +| o | ed89c9e297ab - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (3/12): eliminate Rect as a storage type. r=dbaron a2.0=dbaron +| | | +| o | 4fc85e572c38 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (2/12): eliminate ValuePair as a storage type. r=dbaron a2.0=dbaron +| | | +| o | 301875d4f9b6 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (1/12): Move all the CSS 'storage types' (rect, value pair, etc) to nsCSSValue.h and their code to nsCSSValue.cpp. r=dbaron a2.0=dbaron +|/ / +o | 90ad165ae21b - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part i: Use nsIWidget::CreateChild in nsIView::CreateWidget* (where possible). r=roc a=blocking-fennecb1 +| | +o | 037a5d6b376a - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part h: Add an nsIWidget::CreateChild interface to sweep (relevant to this bug) code dealing with native widgets under the widget/src/* rug. sr=roc +| | +o | f1af117d4598 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part g: Split nsIView::CreateWidget into CreateWidget, CreateWidgetForParent, and CreateWidgetForPopup in preparation of eliminating IIDs here. sr=roc +| | +o | 5bf0b315a5aa - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part f: Split out window initialization code in preparation for multiple CreateWidget* methods. r=roc +| | +o | 353da995af6f - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part e: Simplify the logic for creating popup widgets. r=roc +| | +o | 7735c00eabe9 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part d: Simplify nsView::LoadWidget and return early if it fails. r=roc +| | +o | 7b17bcefb174 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part c: Initialize default widget init data earlier so that it's always available. r=roc +| | +o | c5945b6a97ed - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part b: Remove nsIDeviceContext::SupportsNativeWidgets because it's not used meaningfully, and will be confusing in content processes. sr=roc +| | +o | 5452db293694 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part a: Add nsIView::Impl() and nsView::CreateWidget() to get rid of |static_cast<nsview*>(this)|. r=roc +| | +o | 9407827b5166 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582075, part 0.5: Add support for aInitData=NULL to the Windows nsWindow implementation. r=dougt +| | +o | 88a279b64473 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part 0: Log the repaint region bounding rect in DumpPaintEvent. r=roc +| | +o | cebb111fbfc4 - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 3: Remove nsSVGUtils::GetThebesComputationalSurface and use gfxPlatform::ScreenReferenceSurface instead. r=jwatt +| | +o | 7b3726c3a580 - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 2: Change nsIPresShell::CreateRenderingContext to GetReferenceRenderingContext, that uses the shared 1x1 surface, and use it all over the place. r=mats,sr=dbaron +| | +o | b3e968d831ec - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 1: Create a single static 1x1 surface in gfxPlatform that can be used to create contexts for text measurement etc. r=vlad +| | +o | 55ef0e0529bc - Mounir Lamouri <<a class="link-mailto" href="mailto:mounir.lamouri@gmail.com" rel="freelink">mounir.lamouri@gmail.com</a>> - Bug 506554 - Implement the CSS3 pseudo-classes :required and :optional for HTML. r=sicking sr=bz a2.0=blocking +| | +</int></int></pre> +<p>We want to merge with those probably-good changesets. Note that if any of those probably-good changesets touched code you backed out, you'll need to resolve merge conflicts.</p> +<pre class="eval">$ hg merge $MERGE_TO +92 files updated, 0 files merged, 2 files removed, 0 files unresolved +(branch merge, don't forget to commit) +$ hg commit -m 'Merge backout' +</pre> +<p>OK, good to go. Your tree should look something like</p> +<pre class="eval">@ 8fccc434c295 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Merge backout +|\ +| o 1767c1fb9418 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Back out bug 585817 and bug 582057 +| | +o | c6abfc89215a - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 485288 - Replace all usage of video autobuffer attribute with preload=auto. a=test-fix +| | +o | d6e8fddeb95b - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Disable test_preload_actions.html case 9 until bug 568402 is fixed. a=test-fix +| | +o | 571d2664ead0 - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Don't show throbber on video controls if we're not loading a resource. r=dolske a=blocking2.0 +| | +o | 3f7dfabab5e4 - Rich Dougherty <<a class="link-mailto" href="mailto:rich@rd.gen.nz" rel="freelink">rich@rd.gen.nz</a>>, Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 548523 - Replace HTMLMediaElement.autobuffer attribute with 'preload'. r=roc a=blocking2.0 +| | +o | d7d9cf4ab76a - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Bug 519897 - Supported indexed Ogg files. r=doublec +| | +o | 2a0e5811ece9 - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Commit merge of backout of 66dcf25705f9. a=backout +|\ \ +| o | 958a30df30dd - Chris Pearce <<a class="link-mailto" href="mailto:chris@pearce.org.nz" rel="freelink">chris@pearce.org.nz</a>> - Backed out changeset 66dcf25705f9 +| | | +o | | 6eead86e13dd - Michael Wu <<a class="link-mailto" href="mailto:mwu@mozilla.com" rel="freelink">mwu@mozilla.com</a>> - Bug 556644 - Yet another removed-files.in update, r=rs a=blocking-beta5 +| | | +o | | 69c6ce104f45 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 588216: Avoid race between IO-thread loop->PostTask() and main-thread loop->SetNestableTasksAllowed() that led to Tasks being ignored. r=bent +| | | +o | | 73899b33ca4b - Ben Turner <<a class="link-mailto" href="mailto:bent.mozilla@gmail.com" rel="freelink">bent.mozilla@gmail.com</a>> - Bug 576716 - 'Crash [@ TypedArrayTemplate<int>::init] or [@ TypedArrayTemplate<int>::create]'. Adding a test, r=vlad a=blocker +| | | +o | | 3bd62d459019 - Mark Banner <<a class="link-mailto" href="mailto:bugzilla@standard8.plus.com" rel="freelink">bugzilla@standard8.plus.com</a>> - Follow up to bug 587984 bustage fix for l10n repacks. r=Pike,ted,a=bustage-fix +| | | +o | | e1ca9091e5a6 - Benjamin Stover <<a class="link-mailto" href="mailto:webapps@stechz.com" rel="freelink">webapps@stechz.com</a>> - Bug 575731: Make test more stable in the face of various themes. r,a=sicking +| | | +o | | bb200e1f52b4 - Jonas Sicking <<a class="link-mailto" href="mailto:jonas@sicking.cc" rel="freelink">jonas@sicking.cc</a>> - Bug 550959: Require version 2.5 of python. r=ted a=sicking +| | | +o | | 992491c618de - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (12/12): fix assertions in nsStyleAnimation triggered by part 3. r=dbaron a2.0=dbaron +| | | +o | | 2f078585a0f6 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (11/12): Make all assertions fatal in Declaration.h, Declaration.cpp, nsCSSDataBlock.h, nsCSSDataBlock.cpp, nsCSSValue.h, nsCSSValue.cpp, nsCSSProps.h, and nsCSSProps.cpp. r=dbaron a2.0=dbaron +| | | +o | | 5a9bd15fd7a8 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (10/12): Don't directly manipulate the contents of mTempData in the CSS parser. r=dbaron a2.0=dbaron +| | | +o | | 4bb2e0074aeb - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (9/12): Add an AddLonghandProperty method to nsCSSExpandedDataBlock. r=dbaron a2.0=dbaron +| | | +o | | 659a0864e035 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (8/12): remove the last MoveValue call from the CSS parser. r=dbaron a2.0=dbaron +| | | +o | | 980f0170d982 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (7/12): cleanup pass on css/Declaration.{h,cpp} and nsCSSDataBlock.{h,cpp}. r=dbaron a2.0=dbaron +| | | +o | | f09c1638d3c1 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (6/12): remove vestiges of nsCSSType. r=dbaron a2.0=dbaron +| | | +o | | b88472b0af90 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (5/12): eliminate ValueList as a storage type. r=dbaron a2.0=dbaron +| | | +o | | a3e21759b570 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (4/12): eliminate ValuePairList as a storage type. r=dbaron a2.0=dbaron +| | | +o | | ed89c9e297ab - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (3/12): eliminate Rect as a storage type. r=dbaron a2.0=dbaron +| | | +o | | 4fc85e572c38 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (2/12): eliminate ValuePair as a storage type. r=dbaron a2.0=dbaron +| | | +o---+ 301875d4f9b6 - Zack Weinberg <<a class="link-mailto" href="mailto:zweinberg@mozilla.com" rel="freelink">zweinberg@mozilla.com</a>> - Bug 576044 (1/12): Move all the CSS 'storage types' (rect, value pair, etc) to nsCSSValue.h and their code to nsCSSValue.cpp. r=dbaron a2.0=dbaron + / / +| o 90ad165ae21b - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part i: Use nsIWidget::CreateChild in nsIView::CreateWidget* (where possible). r=roc a=blocking-fennecb1 +| | +| o 037a5d6b376a - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part h: Add an nsIWidget::CreateChild interface to sweep (relevant to this bug) code dealing with native widgets under the widget/src/* rug. sr=roc +| | +| o f1af117d4598 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part g: Split nsIView::CreateWidget into CreateWidget, CreateWidgetForParent, and CreateWidgetForPopup in preparation of eliminating IIDs here. sr=roc +| | +| o 5bf0b315a5aa - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part f: Split out window initialization code in preparation for multiple CreateWidget* methods. r=roc +| | +| o 353da995af6f - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part e: Simplify the logic for creating popup widgets. r=roc +| | +| o 7735c00eabe9 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part d: Simplify nsView::LoadWidget and return early if it fails. r=roc +| | +| o 7b17bcefb174 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part c: Initialize default widget init data earlier so that it's always available. r=roc +| | +| o c5945b6a97ed - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part b: Remove nsIDeviceContext::SupportsNativeWidgets because it's not used meaningfully, and will be confusing in content processes. sr=roc +| | +| o 5452db293694 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part a: Add nsIView::Impl() and nsView::CreateWidget() to get rid of |static_cast<nsview*>(this)|. r=roc +| | +| o 9407827b5166 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582075, part 0.5: Add support for aInitData=NULL to the Windows nsWindow implementation. r=dougt +| | +| o 88a279b64473 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Bug 582057, part 0: Log the repaint region bounding rect in DumpPaintEvent. r=roc +| | +| o cebb111fbfc4 - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 3: Remove nsSVGUtils::GetThebesComputationalSurface and use gfxPlatform::ScreenReferenceSurface instead. r=jwatt +| | +| o 7b3726c3a580 - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 2: Change nsIPresShell::CreateRenderingContext to GetReferenceRenderingContext, that uses the shared 1x1 surface, and use it all over the place. r=mats,sr=dbaron +| | +| o b3e968d831ec - Robert O'Callahan <<a class="link-mailto" href="mailto:roc@ocallahan.org" rel="freelink">roc@ocallahan.org</a>> - Bug 585817. Part 1: Create a single static 1x1 surface in gfxPlatform that can be used to create contexts for text measurement etc. r=vlad +| | +| o 55ef0e0529bc - Mounir Lamouri <<a class="link-mailto" href="mailto:mounir.lamouri@gmail.com" rel="freelink">mounir.lamouri@gmail.com</a>> - Bug 506554 - Implement the CSS3 pseudo-classes :required and :optional for HTML. r=sicking sr=bz a2.0=blocking +| | +$ hg out +comparing with <a class="external" href="http://hg.mozilla.org/mozilla-central" rel="freelink">http://hg.mozilla.org/mozilla-central</a> +searching for changes +1767c1fb9418 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Back out bug 585817 and bug 582057 +8fccc434c295 - Chris Jones <<a class="link-mailto" href="mailto:jones.chris.g@gmail.com" rel="freelink">jones.chris.g@gmail.com</a>> - Merge backout +</int></int> +</pre> +<h2 id="Help" name="Help">Maintaining a branch of mozilla-central</h2> +<p>Let foo be the project you are working on. We assume that the project directory will be <a class="external" href="http://hg.mozilla.org/projects/foo" rel="freelink">http://hg.mozilla.org/projects/foo</a> and is a branch of mozilla-central. We also assume that you want to push some patches on foo and periodically synchronize both repositories.</p> +<h3 id="Modify_hgrc">Modify hgrc</h3> +<p>To make things simpler, you can modify the hgrc file in the repository. You can find it here: /path/to/repository/.hg/hgrc</p> +<p>Change it to:</p> +<pre>[paths] +default = http://hg.mozilla.org/projects/foo +m-c = ssh://hg.mozilla.org/mozilla-central +default-push = ssh://hg.mozilla.org/projects/foo +</pre> +<h3 id="Synchronize_mozilla-central_and_foo_project">Synchronize mozilla-central and foo project</h3> +<p>You can push to foo as you would push to any repository but you might want to keep in sync both repositories. To do that, you can run these commands:</p> +<pre>hg pull -u # Get all the changes to foo in your repo. +hg pull m-c # Get all the changes to mozilla-central in your repo. +hg merge # Here, the things might be complex and would need extra carefulness. +# resolve merge conflicts, if any +hg commit -m "Merge foo with mozilla-central." +hg push # Push the merge to foo. +hg push m-c # Push the changes to mozilla-central. +</pre> +<h2 id="Help" name="Help">Help</h2> +<h3 id="Help.2C_I_can.27t_push.21" name="Help.2C_I_can.27t_push.21">Help, I can't push!</h3> +<p>If you're trying to push, and you can't, first try this:</p> +<pre class="eval">$ ssh hg.mozilla.org +</pre> +<p>If you see output like:</p> +<pre class="eval">Permission denied (publickey,gssapi-with-mic). +</pre> +<p>it may have the following reasons:</p> +<ul> + <li>you need to <a href="#How_do_I_check_stuff_in.3F">configure your username correctly</a></li> + <li>you don't have the correct private key in ~/.ssh</li> + <li>you don't have an hg.mozilla.org account. (If you should have one, <a class="link-https" href="https://bugzilla.mozilla.org/enter_bug.cgi?product=mozilla.org">file a bug</a> in mozilla.org:Server Operations.)</li> +</ul> +<p>If you see output like:</p> +<pre class="eval">You are not allowed to use this system, go away! +</pre> +<p>then you need to <a class="link-https" href="https://bugzilla.mozilla.org/enter_bug.cgi?product=mozilla.org">file a bug</a> in mozilla.org:Server Operations.</p> +<p>You should expect the ssh command to disconnect you immediately, since you're not supposed to have shell access. It may give the output:</p> +<pre class="eval">Could not chdir to home directory : No such file or directory +</pre> +<p>which is harmless (although some people see it and some people don't).</p> +<p>If you see output like:</p> +<pre class="eval">ssl required +</pre> +<p>then you need to <a href="#How_do_I_check_stuff_in.3F">configure your default-push correctly</a>.</p> +<h2 id="Things_that_have_changed" name="Things_that_have_changed">Branch merges</h2> +<p>As part of the rapid release process, the contents of e.g. mozilla-aurora and mozilla-beta are subject to merge events that happen according to the planned branch migration dates. After a branch merge event occurred, if you attempt to use "hg update" in your local tree, you may get error messages such as "abort: crosses branches". In order to fix it, first make sure you don't have local changes, then run "hg update -C -r default".</p> +<h2>Other</h2> +<h3 id="What's_the_difference_between_hg_pull_and_hg_update.3F">What's the difference between hg pull and hg update?</h3> +<p><img alt="hg-diagram.png" class="internal default" src="/@api/deki/files/3040/=hg-diagram.png" style="margin-left: 50px; margin-top: 20px; width: 405px; height: 222px;"></p> +<p><code>hg pull</code> copies changesets from one repository to another. It only brings changes into your local <em>repository</em>, not your working copy. It will touch the network if you're pulling from a remote repository.</p> +<p><code>hg update</code> updates your working copy. It only modifies your working copy. It will not touch the network (unless your directory is on a network filesystem).</p> +<h3 id="How_does_Mercurial_handle_line_endings.3F" name="How_does_Mercurial_handle_line_endings.3F">How does Mercurial handle line endings?</h3> +<p>The Windows version of Mercurial does not automatically convert line endings between Windows and Unix styles. All our repositories use Unix line endings. We need a story for Windows, but right now I have no ideas.</p> +<p>(How about a pre-commit hook that rejects pushes containing CR with a suitably informative error message? We possibly want to make exceptions for certain types of files (at least binary files of course), but we can tweak the hook as necessary as these crop up. Mercurial 1.0 adds a standard hook for this in the win32text extension that we could use/adapt. --jwatt)</p> +<h2 id="Things_that_have_changed" name="Things_that_have_changed">See Also</h2> +<ul> + <li><a class="link-https" href="https://mxr.mozilla.org/mozilla-central/" title="https://mxr.mozilla.org/mozilla-central/">Search mozilla-central code using MXR</a></li> + <li>See also <a href="/en/Mercurial//Desired_Features" title="en/Mercurial//Desired_Features">Mercurial/Desired Features</a></li> + <li><a href="/en/Mozilla/Mercurial/How_Is_Mercurial_different_from_CVS" title="en/Mozilla/Mercurial/How_Is_Mercurial_different_from_CVS">How Is Mercurial different from CVS?</a></li> +</ul> +<p>{{ languages( { "es": "es/FAQ_de_Mercurial" } ) }}</p> |