Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
Why not use DropBox? – Jack Lawrence Aug 26 '12 at 20:11

2 Answers

up vote 0 down vote accepted

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.

share|improve this answer
Thanks, I'll use Dropbox. – user700352 Aug 26 '12 at 20:52

iCloud might sound good idea for syncing Xcode proejcts, but actually it leads into problems. You should use GIT instead. I reccomend to use bitbucket, wich is for free. You can host there private or public projects.

When you have done editing your code in one machine, you shall commit and then pull your changes into remote repository. When yu are opening your project in another comp, you have to fetch it from remote repository.

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

See more here: Save Project Changes

share|improve this answer
Could you please make up your mind as to whether you're recommending Git or BitBucket? – michaelb958 May 19 at 4:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.