SVN:从文件夹内移动文件

发布于 2024-10-14 18:22:49 字数 327 浏览 1 评论 0原文

如何使用 svn move https 移动所有文件(包括 .htaccess 等) ://example.com/repos/123/* https://example.com/repos/?

它说“svn:路径 https://example.com/repos/123/* 在版本 NN 中不存在”

How to move all files (including .htaccess etc.) using svn move https://example.com/repos/123/* https://example.com/repos/?

It says "svn: Path https://example.com/repos/123/* does not exist in revision NN"

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

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

发布评论

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

评论(2

夜巴黎 2024-10-21 18:22:49

svn move 不支持通配符。在 SVN 红皮书中,他们声明此命令可以“移动和调度文件或目录”:

http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.move.html

因此,您有对目录中的每个文件调用 svn move 。

我建议您编写一个简短的脚本来完成此操作,或者尝试使用 Subversion GUI 工具之一。

svn move does not support wild cards. In the SVN redbook they state that this command can "Move and schedule a file or directory":

http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.move.html

You therefore have to call svn move for each file in the directory.

I suggest you to write a short script that does this for you or try to use one of the Subversion GUI tools.

赴月观长安 2024-10-21 18:22:49

我认为您不能在存储库 URL 中使用通配符。

您需要查看https://example.com/repos/123/。然后运行 ​​svn move foo\123\* foo\ 并提交。

I don't think you can use wildcards with repository URLs.

You need to check out https://example.com/repos/123/. Then run svn move foo\123\* foo\ and commit.

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