git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* put THEIR commits AFTER my commits with a single rebase command
@ 2013-04-18  5:18 Ilya Basin
  2013-04-18  6:21 ` Johan Herland
  2013-04-18  6:31 ` Johannes Sixt
  0 siblings, 2 replies; 6+ messages in thread
From: Ilya Basin @ 2013-04-18  5:18 UTC (permalink / raw)
  To: git

I asked this on stackoverflow, but no reply.
http://stackoverflow.com/questions/15971244/git-put-their-commits-after-my-commits-with-a-single-rebase-command

Suppose master and origin/master diverged.
I'm on master and I want to put the commits from origin/master after my commits and then push --force.  

         A---B---C origin/master
        /
    D---E---F---G *master

desired result:

         A---B---C origin/master
        /
    D---E---F---G---A'---B'---C' *master



Variant 1:

    git branch -f tmp
    git reset --hard origin/master
    git rebase tmp

This variant is bad, because 'git reset --hard' checks out some files and 'git rebase' rewrites them again before applying commits. It's a redundant job.  
Variant 2:

    git branch -f tmp origin/master
    git rebase --onto master master tmp
    git branch -f master
    git checkout master

Too many commands. I want to do this with just one command. And I want
to stay be on branch master in case of rebase conflicts.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-04-18 11:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-18  5:18 put THEIR commits AFTER my commits with a single rebase command Ilya Basin
2013-04-18  6:21 ` Johan Herland
2013-04-18  6:59   ` Re[2]: " Ilya Basin
2013-04-18  6:31 ` Johannes Sixt
2013-04-18  8:33   ` Re[2]: " Ilya Basin
2013-04-18 11:03     ` Johannes Sixt

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).