如何下载文件修订版[不检查目录]
TortoiseSVN(在 Windows 上)可以选择将文件版本下载到您的计算机,而无需签出/更新工作副本。您只需选择要下载的版本以及下载位置。请参阅“显示日志”窗口中的“将修订保存到...”选项。
我需要在 Solaris 上使用命令行 Subversion 来执行此操作。
我发现使用 svn cat -r ### path/file.sh > /new_path/file.sh 似乎有效,但我不知道这是否是“正确”的方式。
TortoiseSVN (on Windows) has the option to download a file revision to your computer without having to checkout/update a working copy. You just select the revision you want to download and where. See "Save Revision to..." option from the "Show Log" window.
I need to do this, but using command-line Subversion, on Solaris.
I found that using svn cat -r ### path/file.sh > /new_path/file.sh
seems to work, but I don't know if it is the "proper" way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
svn export
就是你想要的。并且适用于文件和目录:svn export
is what you want. And applicable for both files and directories: