Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have svn setup on my server: /home/svn/setup

i also have the files that i want them under svn control here: /var/www/html/trunk

how do i get the files from /var/www/html/trunk under version control inside /home/svn/trunk ??

if i run svnadmin verify /home/svn/setup/ i get * Verified revision 0.

setup is where i have svn installed. im thinking to ad the website file in another folder called trunk

any ideas?

THnaks

edit: if i do `svn import /var/www/html/trunk file:///home/svn/trunk -m 'Initial import'

i get svn: Unable to open repository 'file:///home/svn/trunk' `

share|improve this question
It looks like you should spend some time working through the tutorials on SVN in the SVN Book. There's a free online version - these are very basic operations, and are covered quite well in the book. – Ken White Jan 26 '12 at 1:36

2 Answers

up vote 1 down vote accepted

You'll have to checkout the svn repository into a working copy, in your case /var/www/html/trunk (with svn checkout). Then, add the files and commit.

By the way, is there a reason why you're using svn on the local filesystem? A distributed version control system such as mercurial or git is faster, more scalable, and easier to setup to boot. For reference, with mercurial, you'd have just to type hg init in /var/www/html/trunk, and that would suffice to setup the repository.

share|improve this answer

That means /home/svn/trunk is not where your initial repository is located. You have svn setup, but did you create a repository?

share|improve this answer
i did, it's named trunk – Patrioticcow Jan 26 '12 at 1:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.