git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Neal Kreitzinger <nkreitzinger@gmail.com>
To: allstars <allstars.chh@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: 1 patch to two branches
Date: Sun, 06 Mar 2011 18:56:21 -0600	[thread overview]
Message-ID: <4D742D35.6080709@gmail.com> (raw)
In-Reply-To: <38ac3be3-8d09-4a38-b31e-9365fe0f2992@v11g2000prb.googlegroups.com>

On 3/3/2011 6:46 AM, allstars wrote:
> my case is as follows
> I have two branches
> basically they are the same, except they differ from different package
> name(java) and namespace(cpp) due to customer request
>
> but now I have a fix , say a patch
> I want to commit it to both branches
>
> but I am lazy so I just want to do just one 'git commit' and 'git
> push'
>
> so I am thinking using a githook in remote server
> and each commit to branch A can also commit to branch B as well
>
> but I am not quite sure what I should use in the hook
>
> git rebase , git merge or git cherry pick ?
>
> seems these 3 ways all lead to the same result
> but I dont know which is better and why

if by "patch" you mean git-am/git-apply then I'm afraid i don't have any 
suggestions because i don't use those commands.  However, if you use 
git-push then have you thought about having a script on the local side 
that does something like this:

$ git checkout java-branch
(hack hack)
$ git add .
$ git commit
$ bash -v myscript  <--run your script
#!/bin/sh
# script to commit java-branch head to cpp-branch and push them both
git checkout cpp-branch &&
wait
git cherry-pick java-branch &&
wait
git push origin HEAD &&
wait
git checkout java-branch &&
wait
git push origin HEAD &&
wait
exit 0

of course, you need some error checking in there.  this is predicated on 
the assumption that the cherry-pick will not get any conflicts.  if it 
does get conflicts then you will have to resolve them manually and that 
is a big reason to do this on the local side instead of the remote side.

v/r,
neal

      reply	other threads:[~2011-03-07  0:56 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-03 12:46 1 patch to two branches allstars
2011-03-07  0:56 ` Neal Kreitzinger [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D742D35.6080709@gmail.com \
    --to=nkreitzinger@gmail.com \
    --cc=allstars.chh@gmail.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).