有谁在比较文件夹和git diff -no索引时如何排除文件?看来这个选择
':(exclude)*.min.css'不适用于无索引(外部工作树)
发布于 2018-11-26 06:03:58
pathspec :(exclude) and its short form :! or :^仅在Git工作树中可用。
所以:
git diff --no-index中执行 command with exclude directives。https://stackoverflow.com/questions/53471209
复制相似问题