aboutsummaryrefslogtreecommitdiff
path: root/git-rebase.sh
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2015-09-10 23:30:51 +0100
committerJunio C Hamano <gitster@pobox.com>2015-09-10 17:42:01 -0700
commit619e3604288ab54c3694e99746661caf0f2df961 (patch)
treee8b9134a571a3021577a5b59480c39692d2c4f20 /git-rebase.sh
parent441c4a40173fe1ee8a5c0094e587dfc47e2a6460 (diff)
downloadgit-619e3604288ab54c3694e99746661caf0f2df961.tar.gz
git-619e3604288ab54c3694e99746661caf0f2df961.tar.xz
rebase: support --no-autostash
This is documented as an option but we don't actually accept it. Support it so that it is possible to override the "rebase.autostash" config variable. Reported-by: Daniel Hahler <genml+git-2014@thequod.de> Signed-off-by: John Keeping <john@keeping.me.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-rebase.sh')
-rwxr-xr-xgit-rebase.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-rebase.sh b/git-rebase.sh
index 55da9db81..95a45938a 100755
--- a/git-rebase.sh
+++ b/git-rebase.sh
@@ -14,7 +14,7 @@ git-rebase --continue | --abort | --skip | --edit-todo
Available options are
v,verbose! display a diffstat of what changed upstream
q,quiet! be quiet. implies --no-stat
-autostash! automatically stash/stash pop before and after
+autostash automatically stash/stash pop before and after
fork-point use 'merge-base --fork-point' to refine upstream
onto=! rebase onto given branch instead of upstream
p,preserve-merges! try to recreate merges instead of ignoring them
@@ -292,6 +292,9 @@ do
--autostash)
autostash=true
;;
+ --no-autostash)
+ autostash=false
+ ;;
--verbose)
verbose=t
diffstat=t