Super User is a question and answer site for computer enthusiasts and power users. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I am working on a joint Xcode project (and plan to work on more in the future), and I am looking for a program that allows multiple devices or computers to edit the project simultaneously, like on Google Drive, where you can create files, share them, and have multiple people edit them at the same time.

So far, my searches and attempts to do this have been unsuccessful.

share|improve this question
up vote 0 down vote accepted

So far, my searches and attempts to do this have been unsuccessful.

No team edits one instance of a project simultaneously, they make their changes independently and let source control deal with merging them together.

You can achieve concurrent development with source control. Xcode has native support for source control:

When working on a software project, it can be very useful to use software control management (SCM) to keep track of changes in the code and coordinate work groups.

...

When two or more people are working on the same project, source control helps prevent conflicts and helps resolve conflicts should they arise. By keeping a central repository that holds the canonical copy of the software, the source control system allows each programmer to work on his or her own local copy without any danger of corrupting the canonical version. If you set up a system of checking out a file before working on it, you can ensure that two people are not working on the same code at the same time. If two people do change the same code, the SCM software helps you to merge the two versions. You can also look through past changes to see what they were and who made them, which can be a great help in managing the project and in fixing bugs.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .