When using `git rebase --autostash <upstream> <branch>` and the workarea is dirty, the active branch is incorrectly reset to the rebase <upstream> branch. This test will check for such behavior. Signed-off-by: Ben Wijen <ben@xxxxxxxxx> --- t/t3420-rebase-autostash.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/t/t3420-rebase-autostash.sh b/t/t3420-rebase-autostash.sh index b8f4d03467..867e4e0b17 100755 --- a/t/t3420-rebase-autostash.sh +++ b/t/t3420-rebase-autostash.sh @@ -306,4 +306,13 @@ test_expect_success 'branch is left alone when possible' ' test unchanged-branch = "$(git rev-parse --abbrev-ref HEAD)" ' +test_expect_success 'never change upstream branch' ' + test_when_finished "git reset --hard && git branch -D upstream" && + git checkout -b upstream unrelated-onto-branch && + echo changed >file0 && + git add file0 && + git rebase --autostash upstream feature-branch && + test $(git rev-parse upstream) = $(git rev-parse unrelated-onto-branch) +' + test_done -- 2.22.0