模拟 git cp,包括名称中带有空格的文件

发布于 2024-10-21 05:38:33 字数 265 浏览 1 评论 0原文

是的,我知道我想要的(git cp ab)大约等于

cp -R a b
git add b

但是这会添加存储库中没有的文件。我得到的最接近的

cd a
git ls-files > ../files.txt
cd ../b
cat ../files.txt | xargs git add

几乎可以工作,但是名称中带有空格的文件存在问题。我使用 Cygwin 是为了它的价值

Yes I know that that what I want (git cp a b) approximately equal to

cp -R a b
git add b

However this adds files that aren't in the repository. The closest I have gotten is

cd a
git ls-files > ../files.txt
cd ../b
cat ../files.txt | xargs git add

almost works, but there are problems with files with whitespace in the name. I'm using Cygwin for what it's worth

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

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

发布评论

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

评论(2

滴情不沾 2024-10-28 05:38:33

您需要使用文件名中不能出现的字符(即空字符)分隔文件列表。尝试:

(cd a && git ls-files -z) | (cd b && xargs -0 git add)

You need to separate the file list by a character that cannot occur in file names, i.e., the null character. Try:

(cd a && git ls-files -z) | (cd b && xargs -0 git add)
守不住的情 2024-10-28 05:38:33

0结合我的尝试和@Philipp的答案

cp -R a b
cd a
git ls-files -z > ../files.txt
cd ../b
cat ../files.txt | xargs -0 git add

0Combining my try and @Philipp's answer

cp -R a b
cd a
git ls-files -z > ../files.txt
cd ../b
cat ../files.txt | xargs -0 git add
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文