macOS Sierra 10.12.6での.git-completion.bash生成エラー
https://medium.com/@farooqyousuf/autocomplete-git-commands-and-branch-names-in-terminal-on-mac-os-x-4e0beac0388aでgit-completion提供されている説明に従ってプロセスを実行しました。 最初のステップはターミナルウィンドウでこのコマンドを実行することです。これは基本的に「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>]