環境:MacOSX10.11.6 El Capitan
しばらくHomebrewを更新していなかったので、
command
1$ brew update
で更新を試みました。
その結果下記のようなエラーが表示されました。
$ brew update error: unknown option `list' usage: git tag [-a|-s|-u <key-id>] [-f] [-m <msg>|-F <file>] <tagname> [<head>] or: git tag -d <tagname>... or: git tag -l [-n[<num>]] [<pattern>] or: git tag -v <tagname>... -l list tag names -n[<n>] print <n> lines of each tag message -d delete tags -v verify tags Tag creation options -a annotated tag, needs a message -m <message> tag message -F <file> read message from file -s annotated and GPG-signed tag -u <key-id> use another key to sign the tag -f, --force replace the tag if exists Tag listing options --contains <commit> print only tags that contain the commit Unpacking objects: 100% (4/4), done. error: unknown option `list' usage: git tag [-a|-s|-u <key-id>] [-f] [-m <msg>|-F <file>] <tagname> [<head>] or: git tag -d <tagname>... or: git tag -l [-n[<num>]] [<pattern>] or: git tag -v <tagname>... -l list tag names -n[<n>] print <n> lines of each tag message -d delete tags -v verify tags Tag creation options -a annotated tag, needs a message -m <message> tag message -F <file> read message from file -s annotated and GPG-signed tag -u <key-id> use another key to sign the tag -f, --force replace the tag if exists Tag listing options --contains <commit> print only tags that contain the commit error: unknown option for 'stash save': --include-untracked To provide a message, use git stash save -- '--include-untracked' Usage: git stash list [<options>] or: git stash show [<stash>] or: git stash drop [-q|--quiet] [<stash>] or: git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>] or: git stash branch <branchname> [<stash>] or: git stash [save [--patch] [-k|--[no-]keep-index] [-q|--quiet] [<message>]] or: git stash clear Error: Could not 'git stash' in /usr/local/Homebrew! Please stash/commit manually if you need to keep your changes or, if not, run: cd /usr/local/Homebrew git reset --hard origin/master
最初のエラーが
error: unknown option `list'
となっていたので、該当のエラーで調べたところ下記フォーラムに下記記載を発見。
https://github.com/matteosister/GitElephant/issues/16
Just found out it has a minimal requirement of Git 1.7.8 (concerning the --list option), maybe this could be added in the README.md
Gitのバージョンを確認。
command
1$ git --version 2git version 2.10.1 (Apple Git-78)
古いですが、要件を満たしているように見えます。
brew installもできないので、手動でモジュール入れ替えして対応している状況です。
状況打破の方法や調査ポイント等、ご教授お願いします。
回答1件
あなたの回答
tips
プレビュー