0
votes

I'm new to Ubuntu, I have library at svn repository and I also know user name and password,how to get that library into my local system. I have done like the following. sudo apt-get install subversion sudo svn --username --password co https://svn.datadrivensafety.com:3690/

I got the them inside \Dharani folder inside this,i am writing the scripts in \Dharani\truck\sources\sample.rb now I want to add and commit those files to svn repository

Could anybody help me I’m wondering.For any help Thanks a lot.

1

1 Answers

0
votes

The first time you checkout the project you want to work on (svn co ...)

From then onwards, your daily workflow is more less like:

  • Update changes from your other team members (if any) with svn update
  • If you created or copied new files which need to be versioned: svn add folder/myfile.rb
  • Check your changes before sending them back to the server with svn status
  • Commit your changes: svn commit

This is explained in great detail in the SVN Book which is free (http://svnbook.red-bean.com/) and the basic workflow is explained here.

You'll probably like to use a desktop tool such as RabbitVCS which is integrated on the file explorer (much like TortoiseSVN on Windows).