]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/pull.c
pull: ff --rebase --autostash works in dirty repo
authorTyler Brazier <tyler@tylerbrazier.com>
Thu, 1 Jun 2017 04:18:36 +0000 (04:18 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 1 Jun 2017 05:09:39 +0000 (14:09 +0900)
commitf15e7cf5cc95cbfd0d05c260f75631781e290edc
tree1dc654940aba622254fd24906c89060c9e44d4d6
parentb06d3643105c8758ed019125a4399cb7efdcce2c
pull: ff --rebase --autostash works in dirty repo

When `git pull --rebase --autostash` in a dirty repository resulted in a
fast-forward, nothing was being autostashed and the pull failed. This
was due to a shortcut to avoid running rebase when we can fast-forward,
but autostash is ignored on that codepath.

Now we will only take the shortcut if autostash is not in effect.
Based on a few tests against the git.git repo, the shortcut does not
seem to give us significant performance benefits, on Linux at least.
Regardless, it is more important to be correct than to be fast.

Signed-off-by: Tyler Brazier <tyler@tylerbrazier.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pull.c
t/t5520-pull.sh