git completions: fix spelling of committer everywhere

Some of the fixes are only for descriptions, others affect functionality.
This commit is contained in:
Mahmoud Al-Qudsi 2022-09-30 15:08:32 -05:00
parent a7f3af921f
commit d9bb91f1e1

View file

@ -1110,8 +1110,8 @@ complete -F -c git -n '__fish_git_using_command am' -l include -d 'Pass --includ
complete -f -c git -n '__fish_git_using_command am' -l reject -d 'Pass --reject to git apply'
complete -x -f git -n '__fish_git_using_command am' -l patch-format -a 'mbox mboxrd stgit stgit-series hg' -d 'Specify the patch format'
complete -f -c git -n '__fish_git_using_command am' -s i -l interactive -d 'Run interactively'
complete -f -c git -n '__fish_git_using_command am' -l commiter-date-is-author-date -d 'Treat commiter date as author date'
complete -f -c git -n '__fish_git_using_command am' -l ignore-date -d 'Treat author date as commiter date'
complete -f -c git -n '__fish_git_using_command am' -l committer-date-is-author-date -d 'Treat committer date as author date'
complete -f -c git -n '__fish_git_using_command am' -l ignore-date -d 'Treat author date as committer date'
complete -f -c git -n '__fish_git_using_command am' -l skip -d 'Skip current patch'
complete -x -c git -n '__fish_git_using_command am' -s S -l gpg-sign -a '(type -q gpg && __fish_complete_gpg_key_id gpg)' -d 'Sign commits with gpg'
complete -f -c git -n '__fish_git_using_command am' -l no-gpg-sign -d 'Do not sign commits'
@ -2312,7 +2312,7 @@ set -l sortcommands branch for-each-ref tag
function __fish_git_sort_keys
echo -objectsize\tSize of branch or commit
echo -authordate\tWhen the latest commit was actually made
echo -commiterdate\tWhen the branch was last committed or rebased
echo -committerdate\tWhen the branch was last committed or rebased
echo -creatordate\tWhen the latest commit or tag was created
echo -creator\tThe name of the commit author
echo -objectname\tThe complete SHA1
@ -2323,7 +2323,7 @@ function __fish_git_sort_keys
echo -committer\tThe name of the person who committed latest
echo -tagger\tThe name of the person who created the tag
echo -authoremail\tThe email of the author of the latest commit
echo -commiteremail\tThe email of the person who committed last
echo -committeremail\tThe email of the person who committed last
echo -taggeremail\tThe email of the person who created the tag
end
complete -f -c git -n "__fish_seen_subcommand_from $sortcommands" -l sort -d 'Sort results by' -a "(__fish_git_sort_keys)"