completion: add --skip for cherry-pick and revert
Even though `--skip` is a valid command-line option for cherry-pick and revert while they are in progress, it is not completed. Add this missing option to the completion script. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Denton Liu committed
Aug 27, 2019 at 00:45 UTC
b1b16bba966b919c0ddb57338c5745ea8b288eb5
1 file changed
+1
-1
contrib/completion/git-completion.bash
+1
-1
@@ -1361,7 +1361,7 @@ _git_checkout ()
1361
esac
1362
}
1363
1364
-__git_sequencer_inprogress_options="--continue --quit --abort"
1364
+__git_sequencer_inprogress_options="--continue --quit --abort --skip"
1365
1366
__git_cherry_pick_inprogress_options=$__git_sequencer_inprogress_options
1367