diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-06-14 18:47:52 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-14 09:41:18 -0700 |
commit | 2e6e276decde2a9f04fc29bce734a49d3ba8f484 (patch) | |
tree | 86adfcb9208d50e5b3aa1f59501e945ecf66e7c7 /t/t3404-rebase-interactive.sh | |
parent | bac1ddd0f86bc5955c24f89e402de80d2844efb5 (diff) | |
download | git-2e6e276decde2a9f04fc29bce734a49d3ba8f484.tar.gz |
rebase: use peel_committish() where appropriate
The revisions specified on the command-line as <onto> and <upstream>
arguments could be of the form :/quuxery; so, use peel_committish() to
resolve them. The failing tests in t/rebase and t/rebase-interactive
now pass.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-rwxr-xr-x | t/t3404-rebase-interactive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index eb241f5312..86917d172f 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -947,7 +947,7 @@ test_expect_success 'rebase -i respects core.commentchar' ' test B = $(git cat-file commit HEAD^ | sed -ne \$p) ' -test_expect_failure 'rebase -i, with <onto> and <upstream> specified as :/quuxery' ' +test_expect_success 'rebase -i, with <onto> and <upstream> specified as :/quuxery' ' test_when_finished "git branch -D torebase" && git checkout -b torebase branch1 && upstream=$(git rev-parse ":/J") && |