aboutsummaryrefslogtreecommitdiff
path: root/git-rebase.sh
diff options
context:
space:
mode:
authorVincent van Ravesteijn <vfr@lyx.org>2012-05-24 13:57:26 +0000
committerJunio C Hamano <gitster@pobox.com>2012-05-29 11:44:14 -0700
commit8a6dae108eadbd2882296981e03fd8e251d42f56 (patch)
treeef1aa4cdca49d738c7bb80cb86e9384f00611e1a /git-rebase.sh
parentbefc5ed3799cb6fcbaa7de03e7fa1760e846853c (diff)
downloadgit-8a6dae108eadbd2882296981e03fd8e251d42f56.tar.gz
git-8a6dae108eadbd2882296981e03fd8e251d42f56.tar.xz
Do not autosquash in case of an implied interactive rebase
The option to autosquash is only used in case of an interactive rebase. When merges are preserved, rebase uses an interactive rebase internally, but in this case autosquash should still be disabled. Signed-off-by: Vincent van Ravesteijn <vfr@lyx.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-rebase.sh')
-rwxr-xr-xgit-rebase.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-rebase.sh b/git-rebase.sh
index 24a284003..9148ec25c 100755
--- a/git-rebase.sh
+++ b/git-rebase.sh
@@ -167,6 +167,7 @@ run_specific_rebase () {
if [ "$interactive_rebase" = implied ]; then
GIT_EDITOR=:
export GIT_EDITOR
+ autosquash=
fi
. git-rebase--$type
}