Create a Subversion with Xcode 4
Hi everybody, I just started to work with Xcode and trying to add a Subversion folder was a pain. So I decided to write about it and describe all the steps in order to help other people who have to set up a Subversion in Xcode. Note that if you don’t have any Subversion software or package installed on your Mac you can download the free Subversion Mac OS X package . STEP 1: Open Xcode and click Connect to a repository. STEP 2: Enter the location path of your Subversion file. Example: https://66.127.107.22:8444/svn/test - if your Subversion is on a Microsoft server you will notice that Xcode will tell you that the “Host is not reachable.” That is because Mac OS doesn’t recognize IP addresses from Microsoft devices. You have to give a name to the IP address. For that, we need to change the host file on your computer. So open the terminal and type : sudo nano /private/etc/host It will ask you your password. Now you’re at the file. You can see that there i...