Edite o projeto Xcode em vários dispositivos simultaneamente

0

Estou trabalhando em um projeto comum do Xcode (e planejo trabalhar mais no futuro), e estou procurando um programa que permita que vários dispositivos ou computadores editem o projeto simultaneamente, como no Google Drive, onde você pode crie arquivos, compartilhe-os e faça com que várias pessoas os editem ao mesmo tempo.

Até o momento, minhas pesquisas e tentativas não foram bem-sucedidas.

    
por user2369402 19.05.2013 / 07:28

1 resposta

0

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

Nenhuma equipe edita uma instância de um projeto simultaneamente, elas fazem suas alterações de forma independente e permitem que o controle de origem lide com a mesclagem das mesmas.

Você pode obter desenvolvimento simultâneo com o controle de origem. O Xcode tem suporte nativo para controle de origem :

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.

    
por 19.05.2013 / 08:03

Tags