From: Johannes Sixt <j.sixt@viscovery.net>
To: Ilya Basin <basinilya@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: put THEIR commits AFTER my commits with a single rebase command
Date: Thu, 18 Apr 2013 08:31:05 +0200 [thread overview]
Message-ID: <516F9329.4060405@viscovery.net> (raw)
In-Reply-To: <1928280357.20130418091807@gmail.com>
Am 4/18/2013 7:18, schrieb Ilya Basin:
> 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
Variant 1a:
git reset --hard origin/master
git rebase @{1}
>
> 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.
Perhaps this one:
git merge origin/master
git rebase ORIG_HEAD
-- Hannes
next prev parent reply other threads:[~2013-04-18 6:31 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
2013-04-18 8:33 ` Ilya Basin
2013-04-18 11:03 ` Johannes Sixt
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=516F9329.4060405@viscovery.net \
--to=j.sixt@viscovery.net \
--cc=basinilya@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.