git 中是否有 'p4 have' 等价物?

Is there a 'p4 have' equivalent in git?

要查看 perforce 工作区中的所有文件和修订,命令很简单:

p4 have ...

在git中是否有等效的命令?

您可能正在寻找

git ls-files

这不是一个完整的类比,因为 Perforce 与 git 如此不同,但这是我最好的猜测。

您还可以从多个标志中进行选择,以指定要包含在列表中的文件:

--[cached|deleted|others|ignored|stage|unmerged|killed|modified]

有关详细信息,请参阅 git help ls-files