Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
今天早上一个 Oh-my-zsh 更新。从那时起,每次我启动终端时:
grep: unrecognized option `--exclude-dir=.cvs'
当我尝试使用 git-flow 时同上
任何想法 ?
低于 2.5.3 的 Grep 版本没有此选项。尝试升级您的 grep,或注释掉这些行
for PATTERN in .cvs .git .hg .svn; do GREP_OPTIONS+="--exclude-dir=$PATTERN " done
在 .oh-my-zsh/lib/grep.zsh 第 9 行。然后它又可以正常工作了。