有一个新的 .gitignore 告诉我是否有任何文件已经与跟踪的文件匹配
有没有办法解析 .gitignore 并告诉我是否已经有一些与忽略匹配的文件,以便我知道删除它们或更改我的 .gitignore?
例如,我有 git 跟踪我的 imgs
目录,我希望忽略所有 Windows Thumbs.db
,并告诉我存储库中是否还有剩余内容被跟踪以便我可以删除它们。
is there a way to parse a .gitignore and tell me if i already have some files that match the ignores so that i know to remove them or change my .gitignore?
example is that i have git tracking my imgs
directory, and i wish to ignore all of windows Thumbs.db
, and also tell me if I have any left over in my repository being tracked so that i can remove them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 git ls-files --ignored 。您可能需要使用这些选项,但 ls-files 是编写使用排除模式匹配文件的脚本的正确起点。
Try
git ls-files --ignored
. You might have to play with the options, butls-files
is the right starting point for writing a script that matches files using the excludes patterns.