Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you add a project to svn in eclipse?

Tags:

java

eclipse

svn

I managed to download the svn plugin for eclipse helios. I then managed to add a new repository to the drive of my choice. However i cannot see how i know add projects i have already created? Can someone tell me how i go about doing this please.

Thanks

like image 886
ricki Avatar asked Apr 19 '11 12:04

ricki


People also ask

How do I add an existing project to a SVN repository?

Open your project folder. You will see question marks on folders that are associated with your VS project that have not yet been added to Subversion. Select those folders using Ctrl + Click, then right-click one of the selected items and select TortoiseSVN > Add. Select OK on the prompt.

How do I add files to SVN?

Adding a File or Directory To add an existing file to a Subversion repository and put it under revision control, change to the directory with its working copy and run the following command: svn add file… Similarly, to add a directory and all files that are in it, type: svn add directory…


1 Answers

Something like:

  • Right-click on your project.
  • Select Team -> Share Project.
  • The Wizard will guide you through to make an Initial Import.
  • The Initial Import wont actually put any code into the repository, just the project details. So you then need to do:
  • Right-Click Team -> Commit, and the same for all future commits.
like image 121
Richard H Avatar answered Oct 08 '22 21:10

Richard H