diff options
author | John Keeping <john@keeping.me.uk> | 2016-01-21 20:52:24 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-01-25 15:13:54 -0800 |
commit | fa4b5e3a35142fabfe905d7e503eeb85773c56ed (patch) | |
tree | ebfee9b242e569e1e7e0d09e2e91299fae67592a /contrib | |
parent | 1b0b6dd0720572dcf90c264aeb91f96a017b0f25 (diff) | |
download | git-fa4b5e3a35142fabfe905d7e503eeb85773c56ed.tar.gz |
completion: add missing git-rebase optionsjk/completion-rebase
This adds the --no-* variants where those are documented in
git-rebase(1).
Signed-off-by: John Keeping <john@keeping.me.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/completion/git-completion.bash | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 6956807519..5cec0ee3cc 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1687,8 +1687,12 @@ _git_rebase () --preserve-merges --stat --no-stat --committer-date-is-author-date --ignore-date --ignore-whitespace --whitespace= - --autosquash --fork-point --no-fork-point - --autostash + --autosquash --no-autosquash + --fork-point --no-fork-point + --autostash --no-autostash + --verify --no-verify + --keep-empty --root --force-rebase --no-ff + --exec " return |