给予特定文件扩展名的“git status”文件列表

xam8gpfp  于 2023-01-19  发布在  Git
关注(0)|答案(1)|浏览(97)

如果我输入git status,我会得到工作树的状态,其中包括已经修改的文件。
我需要过滤掉某个特定的文件扩展名,这可以吗?(我使用的是windows,并且使用的是最新的git版本)。使用git bash。
我在一个有300多人的仓库工作,当我做git status时,每周会有1000多个文件在那里。
这里的解决方案是什么?

huwehgph

huwehgph1#

你可以list files per extension

git ls-files -- \*.rb

或者,您可以使用list your changes(如果您创建了)

git status -- \*.rb
# or, faster, with just the filename
git diff-index --name-only @ -- \*.rb

相关问题