git-add dir 递归但服从 gitignore
我将 git 与 java 一起使用,所以我有深层嵌套的目录。要递归地向 git 添加模式,我正在使用:
find . -iname "*.xml" | xargs git add
它检测像“bin”这样的被忽略的目录并中止(因为 shell 扩展了我的通配符,而不是 git)
有什么更好的方法?
im using git with java so i have deeply nested directories. to add a pattern to git recursively, I am using:
find . -iname "*.xml" | xargs git add
which detects ignored directories like 'bin' and aborts (because the shell expands my wildcard, not git)
what is a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有找到 git add -A 来满足我的需要
i hadn't found
git add -A
which does what i need