diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 80cbb4355..4222bf211 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5700,7 +5700,7 @@ __git_recent_commits () { expl=() _wanted heads expl 'head' compadd "$@" -a - heads && ret=0 expl=() - _describe -2Vx -t commits 'commit object name' descr && ret=0 + _describe -2Vx -t commits 'recent commit object name' descr && ret=0 return $ret } |