检查没有 .svn 文件的 svn 存储库
我的专用服务器(Centos 5.5)上有一个 svn 存储库,位于 /var/svn/myRepository。我只想将这些文件复制到我的生产文件夹 /var/www/myWebapp 中。
据我了解 SVN,我只能在本地项目文件夹上使用 svn 导出,该文件夹包含所有源代码和附加 .svn 文件。但在我的专用服务器上,我只有存储库。如何获取源代码文件,而不将那些 .svn 文件从该存储库移至我的 /var/www/myWeapp 文件夹中?
I have an svn repository on my dedicated server (Centos 5.5) at /var/svn/myRepository. I just want to copy those files into my production folder /var/www/myWebapp.
As far as I am understanding SVN I could only use svn export on my local project folder which has all the sourcecode and additional .svn files. But on my dedicated Server I just have the repository. How can I get the sourcecodefiles, without those .svn files out of that repository into my /var/www/myWeapp folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不需要。您不需要工作副本来执行
svn 导出
。只要这样做:
您应该将
HEAD
的干净副本放入/var/www/myWebapp
中。No. You don't need a working copy to do a
svn export
.Just do:
You should get a clean copy of
HEAD
into/var/www/myWebapp
.只需在专用服务器上某处的“工作”文件夹中签出您的项目即可。这样做是没有问题的。
然后按照您习惯的方式执行“svn导出”即可。
Just check-out your project in a "work" folder somewhere on your dedicated server. There is no problem to do that.
Then just do an "svn export" as your are used to.