From 62d435f25b7163e7869a3949a0145640aa26f489 Mon Sep 17 00:00:00 2001 From: Shun Sakai Date: Mon, 2 Dec 2019 03:54:08 +0900 Subject: [PATCH] Add completions of `--committer-date-is-author-date` and `--ignore-date` for `git-rebase` --- share/completions/git.fish | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/completions/git.fish b/share/completions/git.fish index 78503d91f..e5d6c21bd 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -1474,6 +1474,8 @@ complete -f -c git -n '__fish_git_using_command rebase' -s n -l no-stat -d "Don' complete -f -c git -n '__fish_git_using_command rebase' -l verify -d "Allow the pre-rebase hook to run" complete -f -c git -n '__fish_git_using_command rebase' -l no-verify -d "Don't allow the pre-rebase hook to run" complete -f -c git -n '__fish_git_using_command rebase' -s f -l force-rebase -d 'Force the rebase' +complete -f -c git -n '__fish_git_using_command rebase' -l committer-date-is-author-date -d "Use the author date as the committer date" +complete -f -c git -n '__fish_git_using_command rebase' -l ignore-date -d "Use the committer date as the author date" complete -f -c git -n '__fish_git_using_command rebase' -s i -l interactive -d 'Interactive mode' complete -f -c git -n '__fish_git_using_command rebase' -s p -l preserve-merges -d 'Try to recreate merges' complete -f -c git -n '__fish_git_using_command rebase' -s r -l rebase-merges -a 'rebase-cousins no-rebase-cousins' -d 'Preserve branch structure'