From: David Barr <davidbarr@google.com>
To: semtlenori@gmail.com
Cc: git@vger.kernel.org
Subject: Re: How to reorder all commits include the initial commit
Date: Sun, 18 Mar 2012 01:06:56 +1100 [thread overview]
Message-ID: <CAFfmPPOhjDhdry2yqgSyAVhaPF-fhXOPOAWRahFkFFssQmz89A@mail.gmail.com> (raw)
In-Reply-To: <CAFT+Tg_DmqxiK1qw1YvNZtY07ZaZ89+JWohdWw2fm8f=6hAwiQ@mail.gmail.com>
On Sun, Mar 18, 2012 at 12:15 AM, 이응준 <semtlenori@gmail.com> wrote:
> Sometimes, I need to reorder all commits, which include the initial
> commit, in my branch.
> So I tried it using git-rebase as follows, but it failed with the fatal error.
>
> (supposing the initial commit is 793ea88)
> $ git rebase -i 793ea88^
> fatal: Needed a single revision
> invalid upstream 793ea88^
>
> How can I do that?
From my reading of git-rebase(1), this is currently unsupported.
However, I was able to reorder linear history including the root using
git format-patch and git am.
git init test
cd test/
echo a>b
git add b
git commit -m '1'
echo c>d
git add d
git commit -m '2'
git init new
cd new/
git am ../0002-2.patch
git am ../0001-1.patch
--
David Barr
next prev parent reply other threads:[~2012-03-17 14:07 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-17 13:15 How to reorder all commits include the initial commit 이응준
2012-03-17 14:06 ` David Barr [this message]
2012-03-17 14:26 ` Jakub Narebski
2012-03-17 19:45 ` Yi, EungJun
2012-03-18 2:58 ` Jiang Xin
2012-03-18 19:05 ` Yi, EungJun
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=CAFfmPPOhjDhdry2yqgSyAVhaPF-fhXOPOAWRahFkFFssQmz89A@mail.gmail.com \
--to=davidbarr@google.com \
--cc=git@vger.kernel.org \
--cc=semtlenori@gmail.com \
/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).