简体   繁体   中英

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. How can I do this. As when I am right clicking on that project I am not getting 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 switch http://xyz/base_project/branches/target_branch .

Finally commit the entire stuff now.

svn commit .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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