Merge branch 'dl/complete-cherry-pick-revert-skip'
The command line completion support (in contrib/) learned about the "--skip" option of "git revert" and "git cherry-pick". * dl/complete-cherry-pick-revert-skip: status: mention --skip for revert and cherry-pick completion: add --skip for cherry-pick and revert completion: merge options for cherry-pick and revert
This commit is contained in:
@ -1361,7 +1361,9 @@ _git_checkout ()
|
||||
esac
|
||||
}
|
||||
|
||||
__git_cherry_pick_inprogress_options="--continue --quit --abort"
|
||||
__git_sequencer_inprogress_options="--continue --quit --abort --skip"
|
||||
|
||||
__git_cherry_pick_inprogress_options=$__git_sequencer_inprogress_options
|
||||
|
||||
_git_cherry_pick ()
|
||||
{
|
||||
@ -2624,7 +2626,7 @@ _git_restore ()
|
||||
esac
|
||||
}
|
||||
|
||||
__git_revert_inprogress_options="--continue --quit --abort"
|
||||
__git_revert_inprogress_options=$__git_sequencer_inprogress_options
|
||||
|
||||
_git_revert ()
|
||||
{
|
||||
|
Reference in New Issue
Block a user