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'm doing a project with omnet++ (which is based on Eclipse) and I wanted to create an online repository on projectlocker.com for it, so I typed:

svn import /home/paul/myProject   https://pl3.projectlocker.com/myaccount/myrepository --username=myUsername

Now, by just going into my project folder, how can I store all the possible changes that I've made into my online repository?

svn commit

won't do it. I've also downloaded subclipse 1.0, but it doesn't seem to be all that helpful on this matter.

Any ideas? Thanks!

share|improve this question
What is not working with svn commit? Do you get an error? What does svn status return? – Albin Sunnanbo Nov 4 '10 at 13:11
svn commit returns: svn: Commit failed (details follow): svn: Directory '/home/paul/myproject/examples/wireless/voiceoverwifiRWMA/results/.svn' containing working copy admin area is missing. svn status returns the list of all the files in my project – Ricky Robinson Nov 4 '10 at 13:17

1 Answer

up vote 1 down vote accepted

svn export is not the right command to use in this case, you need to use svn checkout.

share|improve this answer
Well, I used import, not export. Ok, so I guess the first thing I had to do was to this svn checkout, and only after that start making any changes to my code. Is that right or am I missing something? – Ricky Robinson Nov 4 '10 at 13:48
oops, yeah you need to use a svn checkout after import. – Version Control Buddy Nov 4 '10 at 17:53

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.