diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-08-05 12:38:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-05 12:38:39 -0700 |
commit | e3e9af5baefff0ad6ab683dae438111db626a6c6 (patch) | |
tree | 9edcb0f8951ac0725a886c9203246d501f7eebb9 /t | |
parent | 7d1b50981277c59a788298751f121567a1e75202 (diff) | |
parent | d44e71261f91d3cc81293e0976bb40daa8abb583 (diff) | |
download | git-e3e9af5baefff0ad6ab683dae438111db626a6c6.tar.gz git-e3e9af5baefff0ad6ab683dae438111db626a6c6.tar.xz |
Merge branch 'sb/maint-pull-rebase'
* sb/maint-pull-rebase:
pull: support rebased upstream + fetch + pull --rebase
t5520-pull: Test for rebased upstream + fetch + pull --rebase
Diffstat (limited to 't')
-rwxr-xr-x | t/t5520-pull.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t5520-pull.sh b/t/t5520-pull.sh index c5a2e66a0..e78d40242 100755 --- a/t/t5520-pull.sh +++ b/t/t5520-pull.sh @@ -117,6 +117,19 @@ test_expect_success '--rebase with rebased default upstream' ' ' +test_expect_success 'rebased upstream + fetch + pull --rebase' ' + + git update-ref refs/remotes/me/copy copy-orig && + git reset --hard to-rebase-orig && + git checkout --track -b to-rebase3 me/copy && + git reset --hard to-rebase-orig && + git fetch && + git pull --rebase && + test "conflicting modification" = "$(cat file)" && + test file = "$(cat file2)" + +' + test_expect_success 'pull --rebase dies early with dirty working directory' ' git checkout to-rebase && |