mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 14:34:05 +00:00
Add completions for git-cherry-pick sequencer subcommands
This commit is contained in:
parent
e7c401571b
commit
48bf689358
1 changed files with 3 additions and 0 deletions
|
@ -989,6 +989,9 @@ complete -f -c git -n '__fish_git_using_command cherry-pick' -s x -d 'Append inf
|
||||||
complete -f -c git -n '__fish_git_using_command cherry-pick' -s n -l no-commit -d 'Apply changes without making any commit'
|
complete -f -c git -n '__fish_git_using_command cherry-pick' -s n -l no-commit -d 'Apply changes without making any commit'
|
||||||
complete -f -c git -n '__fish_git_using_command cherry-pick' -s s -l signoff -d 'Add Signed-off-by line to the commit message'
|
complete -f -c git -n '__fish_git_using_command cherry-pick' -s s -l signoff -d 'Add Signed-off-by line to the commit message'
|
||||||
complete -f -c git -n '__fish_git_using_command cherry-pick' -l ff -d 'Fast-forward if possible'
|
complete -f -c git -n '__fish_git_using_command cherry-pick' -l ff -d 'Fast-forward if possible'
|
||||||
|
complete -f -c git -n '__fish_git_using_command cherry-pick' -l continue -d 'Continue the operation in progress'
|
||||||
|
complete -f -c git -n '__fish_git_using_command cherry-pick' -l abort -d 'Cancel the operation'
|
||||||
|
complete -f -c git -n '__fish_git_using_command cherry-pick' -l skip -d 'Skip the current commit and continue with the rest of the sequence'
|
||||||
|
|
||||||
### clone
|
### clone
|
||||||
complete -f -c git -n '__fish_git_needs_command' -a clone -d 'Clone a repository into a new directory'
|
complete -f -c git -n '__fish_git_needs_command' -a clone -d 'Clone a repository into a new directory'
|
||||||
|
|
Loading…
Reference in a new issue