Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 2

Work with SVN

You have several options to work:

1.

Using TortoiseSVN

Install TortoiseSVN. In the URL of repository field add your URL repo. For the other fields, use the defaults and hit OK. Provide your user/pass. Go to your server root installation (usually www or public_html), right-

click in folder and click SVN checkout.

2.

Using Zend Studio:


SVN.

Open the PHP explorer view. In the PHP explorer pane, hit right click->new->PHP project from


3.

Name your project. Provideyour repository URL. Provide your user/pass.

Directly in linux:

Actions in your shell:

Checkout:

svn co <repo_location> <name_of_dir>


for example:

svn co https://groovelift.unfuddle.com/svn/groovelift_roomies/ roomies

Get files without .svn folders:

cd /var/www/myWebapp svn export <repo_location>


for example:

mkdir roomiesApp cd roomiesApp svn export https://groovelift.unfuddle.com/svn/groovelift_roomies/


Add new unrevisioned files:

svn add svn add --force <folder>


Add editor to SVN

export SVN_EDITOR=vi
*Many of our projects reside in unfuddle. For these the user is your user for Unfuddle with the prefix groovelift_. The password is the same.

You might also like