GIT 查找不受源代码控制的文件

GIT find files not under source control

我在我的项目中发现了一个不受源代码控制的文件。 然后我将它添加到源代码管理,一切都很好。 有没有我可以执行的 GIT 命令行来检查是否有任何其他文件不受源代码控制?

我在 'GIT LS-FILES' 上尝试了很多选项,但没有找到任何可以揭示文件的选项。

使用git ls-files:您可以使用

git ls-files --exclude-standard -o

-o--others 的缩写:

-o
--others

Show other (i.e. untracked) files in the output

默认情况下,git ls-files 不支持 .gitignore 文件,如果你想隐藏应该被忽略的文件,你必须添加 --exclude-standard