From 873d7f6bb3be88dd8655c58d74d652cd21499b3d Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Fri, 12 Mar 2021 18:10:11 +0100 Subject: [PATCH] completions/git: Add recent commits for rebase Fixes #7817 --- share/completions/git.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/completions/git.fish b/share/completions/git.fish index 3a7c9e420..1f15d307d 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -1505,6 +1505,7 @@ complete -f -c git -n __fish_git_needs_command -a rebase -d 'Forward-port local complete -f -c git -n '__fish_git_using_command rebase' -a '(__fish_git_remotes)' -d 'Remote alias' complete -f -c git -n '__fish_git_using_command rebase' -a '(__fish_git_branches)' complete -f -c git -n '__fish_git_using_command rebase' -a '(__fish_git_heads)' -d Head +complete -f -c git -n '__fish_git_using_command rebase' -a '(__fish_git_recent_commits)' complete -f -c git -n '__fish_git_using_command rebase' -a '(__fish_git_tags)' -d Tag complete -f -c git -n '__fish_git_using_command rebase' -l continue -d 'Restart the rebasing process' complete -f -c git -n '__fish_git_using_command rebase' -l abort -d 'Abort the rebase operation'