SVN:从文件夹内移动文件
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
我认为您不能在存储库 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 runsvn move foo\123\* foo\
and commit.