简体   繁体   English

将项目检入到其他SVN存储库位置

[英]Checkin project to a different SVN repository location

I have one project that I checked out from one SVN repository location and done some changes in that project in various java files and now I want to check out this project in to some different SVN repository. 我有一个项目,该项目是从一个SVN存储库位置检出的,并在该项目中的各种Java文件中进行了一些更改,现在我想将该项目检入到其他SVN存储库中。 How can I do this. 我怎样才能做到这一点。 As when I am right clicking on that project I am not getting share this project . 当我右键单击该项目时,我不会share this project I am working with eclipse. 我正在用日食。 Any suggestions will be appreciated.. 任何建议将不胜感激。

If you have a termnial fire it up. 如果您要使用终端机,请启动它。

svn copy http://xyz/base_project/branches/current_branch http://xyz/base_project/branches/target_branch

Then do a svn switch to that branch you just created. 然后用svn切换到您刚刚创建的分支。

svn switch http://xyz/base_project/branches/target_branch .

Finally commit the entire stuff now. 最后,现在提交所有内容。

svn commit .

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM