I want to add a folder to a remote server with the svn repository set up. In my local computer I have tortoiseSVN. All I want to do is add folder from my local computer to the repo setup in the remote directory? ANy pointers? You can tell I'm not a svn person :(
8
votes
4 Answers
13
votes
You can copy the directory into your checked-out copy of the repository, then right click on the file, go to TortoiseSVN, and select add. This will add the folder to your repo, then commit the change (right click and select SVN Commit), and you should be good.
If that isn't sufficient for your question, I apologize.
GotAmye, As long as the remote server is housing a subversion repository, this should work. What is running on the remote server that makes you think there will be a problem?
3
votes
Thanks for your help everyone. Your pointers were very helpful. Here is a summary of what I did:
- From my remote server, I checked out the svn repository on which I wanted to add my folder
- On the checked out repo (now in my local computer), I added the folders that I wanted.
- Right click on the newly added folder (on which all the added files are present)->TortoiseSVN->add
- To commit the changes TortoiseSVN->Commit
2
votes