我跟着这个过程了 git-completion
根据提供的描述 https://medium.com/@farooqyousuf/autocomplete-git-commands-and-branch-names-in-terminal-on-mac-os-x-4e0beac0388a :
第一步是在终端窗口中执行此命令,这基本上是抓取'git-completion.bash'脚本并将其放在您的主目录中。
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
现在将此行添加到'〜/ .bash_profile'。这将允许执行git自动完成脚本(如果存在)
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
您现在可以重新启动所有终端窗口,或只刷新您希望使用此脚本的终端窗口。要刷新,请执行以下操作:
source ~/.bash_profile
以下是我在击球时遇到的错误 tab
键入后键 git
:
unknown option: --list-cmds=list-mainporcelain,others,nohelpers,alias,list-complete,config
usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
<command> [<args>]
git version 2.17.1