|
Setting up your XCode SCM Repositories |
|
|
Before you check out any projects, you need to setup your repository:
- Open XCode.
- Go to SCM -> Configure SCM Repositories.
- Hit the little + in the bottom left corner to create a new repository.
- Name it whatever you like and set the proper SCM type. I prefer Subversion.
- You can either fill in all the fields or type in a URL and it will parse it for you. Here are a few example URLS:
- http://
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
/repos/projecta
- svn+ssh://
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
/home/svn/projectb
- Type in your password.
- You can test your connection by hitting Apply. If everything is correct, it will change from "Testing Connection..." to "Authenticated.
- Hit OK and get back to XCode.
Now you can check projects in and out.
|