Browse Source

Merge branch 'vr/rebase-autosquash-does-not-imply-i'

"git rebase -p" used to pay attention to rebase.autosquash which was
wrong.  "git rebase -p -i" should, but "git rebase -p" by itself
should not.

By Vincent van Ravesteijn
* vr/rebase-autosquash-does-not-imply-i:
  Do not autosquash in case of an implied interactive rebase
maint
Junio C Hamano 13 years ago
parent
commit
4336b53c66
  1. 1
      git-rebase.sh

1
git-rebase.sh

@ -167,6 +167,7 @@ run_specific_rebase () { @@ -167,6 +167,7 @@ run_specific_rebase () {
if [ "$interactive_rebase" = implied ]; then
GIT_EDITOR=:
export GIT_EDITOR
autosquash=
fi
. git-rebase--$type
}

Loading…
Cancel
Save