git-add dir 递归但服从 gitignore

发布于 2024-10-12 15:52:23 字数 345 浏览 2 评论 0原文

我将 git 与 java 一起使用,所以我有深层嵌套的目录。要递归地向 git 添加模式,我正在使用:

find . -iname "*.xml" | xargs git add

它检测像“bin”这样的被忽略的目录并中止(因为 shell 扩展了我的通配符,而不是 git)

有什么更好的方法?

http://code.google.com/p/msysgit/issues/detail ?id=141

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?

http://code.google.com/p/msysgit/issues/detail?id=141

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

执笔绘流年 2024-10-19 15:52:23
git ls-files --exclude-standard -o | grep '\.xml

git ls-files --exclude-standard -o | grep '\.xml

春风十里 2024-10-19 15:52:23

我没有找到 git add -A 来满足我的需要

i hadn't found git add -A which does what i need

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文