Hi all-
I've discovered a difference in behavior between `git rebase` and
`git rebase -i`, and I believe the behavior exhibited by `git rebase -
i` is incorrect and should be changed to match `git rebase`. The
behavior difference occurs when running the command in the form:
git rebase [-i] <upstream> <branch>
If <upstream> is "HEAD", `git rebase` seems to perform these
(correct) steps:
A=$(git rev-parse HEAD)
git checkout <branch>
git rebase $A
However, `git rebase -i` seems to perform these (incorrect) steps:
git checkout <branch>
git rebase -i HEAD
The problem is that `git checkout` changes the meaning of HEAD
(naturally), and so these steps are not equivalent. The end result is
that `git rebase -i HEAD <branch>` just checks out <branch> and prints
"Nothing to do", while when -i is omitted the rebase occurs as
expected. Below is a transcript that shows exactly what I mean.
-Adam
% git init
Initialized empty Git repository in .git/
% touch onmaster
% git add onmaster
% git commit -m "Added onmaster"
Created initial commit 7c3e0f1: Added onmaster
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 onmaster
% touch onmaster2
% git add onmaster2
% git commit -m "Added onmaster2"
Created commit c19019b: Added onmaster2
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 onmaster2
% git checkout -b work HEAD^
Switched to a new branch "work"
% touch onwork
% git add onwork
% git commit -m "Added onwork"
Created commit ae14495: Added onwork
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 onwork
% touch onwork2
% git add onwork2
% git commit -m "Added onwork2"
Created commit 64b3dc0: Added onwork2
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 onwork2
% ls
onmaster onwork onwork2
% git checkout master
Switched to branch "master"
% ls
onmaster onmaster2
% git rebase -i HEAD work
Nothing to do
% ls
onmaster onwork onwork2
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Hiten Pandya | Re: up? (emacs docbook xml ide) |
| Martin Michlmayr | Network slowdown due to CFS |
git: | |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| David Miller | [GIT]: Networking |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Natalie Protasevich | [BUG] New Kernel Bugs |
| Yaroslav Tarasenko | Re: PC-BSD |
| Ben Cadieux | DragonFly MBR |
| justin | Re: dragonfly pdf documentation |
| dark0s Optik | DragonFly over Sony Vaio |
