Postępowałem zgodnie z procedurą opisanągit-completion
na https://medium.com/@farooqyousuf/autocomplete-git-commands-and-branch-names-in-terminal-on-mac-os-x-4e0beac0388a :
Pierwszym krokiem jest wykonanie tego polecenia w oknie terminala, jest to w zasadzie pobranie skryptu „git-complete.bash” i umieszczenie go w katalogu domowym.
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
Teraz dodaj tę linię do swojego ~ ~ .bash_profile. Umożliwi to wykonanie skryptu autouzupełniania git, jeśli jest obecny
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
Możesz teraz ponownie uruchomić wszystkie okna terminala lub po prostu odświeżyć okno terminala, w którym chcesz użyć tego skryptu. Aby odświeżyć:
source ~/.bash_profile
Oto błąd, który pojawia się podczas tab
naciskania klawisza po wpisaniu 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