如何让git状态仅显示暂存的文件

我想只列出阶段性文件名。 我无法为git status命令找到--name-only的等效标志。 什么是好的选择?

文件列表将被传送到php -l (PHP lint语法检查器)。

解决方案:完整的命令

git diff --name-only --cached | xargs -l php -l

使用git diff --name-only (使用--cached获取暂存文件)

链接地址: http://www.djcxy.com/p/50871.html

上一篇: How to make git status show only staged files

下一篇: Git: Show content of file as it will look like after committing