命令“git status -u no”也会过滤跟踪的文件

问题描述 投票:3回答:1

我想查看工作目录和索引的状态,但不是未跟踪的文件。

git-status doc http://www.kernel.org/pub/software/scm/git/docs/git-status.html告诉-u开关将过滤未跟踪的文件。

但是以下命令

git status -u no

过滤未跟踪的文件,并过滤工作树和索引中跟踪文件的修改。

git
1个回答
4
投票

尝试:

git status --untracked-files=no

完整的参数形式有效。 但实际上,如果您使用缩写,则需要删除-u和模式之间的空间:

git status -uno

Oleh Prypin帮助comments git status -u接受一个可选参数(默认为all)。 -u no就像--untracked-files no一样模棱两可,因为git status -u some_file.txt必须继续工作。

© www.soinside.com 2019 - 2024. All rights reserved.