Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access Xcode project with iCloud

I recently bought a MacBook Pro that I will use to develop an iPhone app. I want to be able to transfer the Xcode project between my Macbook and my iMac in the same manner that Word documents can be transferred using iCloud. Is there a secure way this can be done?

like image 407
user700352 Avatar asked Feb 19 '23 09:02

user700352


2 Answers

iCloud or version management?

iCloud might sound good idea for syncing Xcode projects, but it actually leads to problems. You should use git instead. I recommend to use bitbucket (online git repos), which is free. You can host private or public projects on bitbucket. I like bitbucket because of free private repos. GitHub does not provide free private repositories!

Easy to share

When you are done editing your code in one machine, you can commit changes and then push your committed changes into a remote repository. When you are open your project on another computer, you have to fetch it (pull) from the remote repository.

By using git, you can share your code easily with other team members, too.

How to

See more here:

  • Enable Access to Your Source Code Repositories

  • Save Project Changes

like image 136
D.A.H Avatar answered Feb 27 '23 21:02

D.A.H


I'm using dropbox to sync my xcode projects across 2 macs. I had no issues so far but I would recommend not to work on a project simultaneously, so make sure to close it on one machine before you open it on another.

like image 33
Seb Avatar answered Feb 27 '23 21:02

Seb