With git, you can rewind time and find a different point to branch off your second branch.

I imagine you have some structure like this:

sysiphus/master perl/blead | | ... patches ... other patches | | | / +----------------/ <- here is where you branched off your change +s, for example SHA 12abcd |

The easiest way is to then check out the point where you diverged from blead</>, create a new branch and apply your changes to <c>win32/makefile.mk there:

git checkout 12abcd # check that we can build at this stage, make sure that you have all y +our changes out of tree, just in case: git clean -dfX && cd win32 && gmake test # Create the new branch here, and check it out git branch makefile-update git checkout makefile-update ... apply your changes # check that tests still pass git clean -dfX && cd win32 && gmake test git commit -m "voila" git push github

In reply to Re: [OT] How to make a second github PR by Corion
in thread [OT] How to make a second github PR by syphilis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.