Setting up SVN repository on Remote machine with XCode 4.0
I have followed the documentation to setup the SVN repository for existing project. I followed following steps:
mkdir branches
mkdir tags
mkdir trunk
cp -R /myProject /SVN_Master/trunk
svnadmin create myProject_svn
svn import trunk/myProject file:///SVN_Master/myProejct_svn -m "Initial import"
It has set 开发者_运维知识库up SVN repository now. How can I checkout this? It isn't working when I try to checkout from XCode organizer, give path file:///SVN_Master/myProejct_svn. Am I missing something?
How could I setup the same thing for remote host(my server)? Can I just copy created local repository there and use that path?
Thanks.
Got this sorted. It was annoying though as Apple's documentation on this doesn't made any sense. The simple steps you should follow is,
- Setup the SVN repository on remote Windows server. I used VisualSVN. I was able to setup in couple of minutes.
- From MAC, checkout the code from terminal using "svn co http://serverurl/svn/projectname localdir" command.
- Open the project.xcodeproj file and it will try to create repository for you automatically. Make sure that you enter correct user/pass when asked for.
精彩评论