How to access an Xcode project using iCloud

I recently bought a MacBook Pro, which I will use to develop an application for the iPhone. I want to be able to transfer an Xcode project between my Macbook and my iMac in the same way that Word documents can be transferred using iCloud. Is there a safe way to do this?

+4
source share
2 answers

I use dropbox to sync my xcode projects with two poppies. I have not had any problems so far, but I would recommend not working on the project at the same time, so be sure to close it on one machine before opening it on another.

+2
source

iCloud or version control?

iCloud may seem like a good idea for syncing Xcode projects, but it actually leads to problems. You must use git . I recommend using bitbucket (online git repos), which is free. You can post private or public projects on a bitbucket. I like the beatpack because of the free private repositories. GitHub does not provide free private repositories!

Easy to use

When you finish editing the code on one computer, you can commit the changes and then transfer the changes you made to the remote repository. When you open your project on another computer, you need to extract it (pull it out) from the remote repository.

Using git, you can easily share your code with other team members.

how

More details here:

+4
source

All Articles