Hi all,
I have just moved the
trunk into
branches/z-push-1 and
branches/z-push-2 into
trunk/src. If you have a checkout of a trunk or z-push-2 branch you will have to switch your project into new location. Below I will describe 2 possibilities to do that.
Before you start, make sure that you have a backup of your working location!Way 1 - using the command lineIn your terminal go to the root of your project.
- Code: Select all
cd /path/to/z-push
If you have
a trunk checkout, you'll need to execute following:
- Code: Select all
svn switch "http://svn.berlios.de/svnroot/repos/z-push/branches/z-push-1" -r HEAD
If you have a different checkout (e.g. svn or https or svn+ssh) you'll have to replace http:// with the corresponding protocol. Take a look at the BerliOS site for the available options:
http://developer.berlios.de/svn/?group_id=8963Note: if you have a svn+ssh checkout and
svn switch "svn+ssh://username@svn.berlios.de/svnroot/repos/z-push/branches/z-push-1" returns an "is not the same repository" error, adding
-l username to subversion's configuration file (probably
/your/home/.subversion/config) in [tunnels] section should solve it, e.g.:
- Code: Select all
ssh = $SVN_SSH ssh -l username
Make sure you remove it after svn switch or it will use this username for all your svn+ssh repositories.If you have
a z-push-2 branch checkout, you'll need to execute following:
- Code: Select all
svn switch "http://svn.berlios.de/svnroot/repos/z-push/trunk/src" -r HEAD
See also the note for trunk checkout.
Way 2 - using the Eclipse IDERight-click on your Z-Push project's name and select
Team->Switch.... Click on the
Browse button right of the URL field and select the appropriate entry from the tree view. Click Ok twice and you're done.
If you have any problems with this, please open a new topic for it, so that this one stays as a reference.
Manfred,
Z-Push dev team