-3

I'm an IOS developer and I want to develop an app from my two macs : iMac at home and macbook pro when I go out , so is there any way to transfer the project two the other mac when ever I make and save a change or transfer the project fast

keloa
  • 115
  • 2
  • 11

3 Answers3

2

Use github, or bitbucket, or any other source management tool.....

tomsoft
  • 4,448
  • 5
  • 28
  • 35
1

GIT souce control is made for this! and a lot more actually :)

You basically have the code stored online and update it when you stop working. You can use the Xcode menus to manage it: you use commit and push to save new code, and pull to get the new data from the server.

https://bitbucket.org/ is a good free solution.

Tiago Lira
  • 2,543
  • 1
  • 18
  • 17
0

source controls like git, svn are for that. You can use github, gitbucket

Usama
  • 1,945
  • 1
  • 13
  • 20