2

I am a newbie for iPhone Programming. I would like to know how can we manage working on the same code in team in iPhone SDK?

Any easy tutorials to implement this would be helpful.

Thanks!

meetpd
  • 9,150
  • 21
  • 71
  • 119
  • 3
    Same as in any other platform: version control. – Nikita Rybak Mar 03 '11 at 03:37
  • 1
    There is built-in SVN support in Xcode 3, and Xcode 4 will bring Git support. Other than that, you can manage version control from outside the IDE too. – zneak Mar 03 '11 at 03:37
  • @Nikita, Zneak: Thanks for your answers. Could you please guide to a good easy to understand tutorial to implement this? Thanks! – meetpd Mar 03 '11 at 03:43

1 Answers1

2

You don't need to 'implement' anything.
If you prefer git, tag info has some references and this question gives a lot of useful recipes.

For subversion, check its tag and 'subversion book' link in there.

After that, just add your working directory to source control (excluding build dir and personal settings).

Those tools aren't iphone-specific, so you can use them in any project in any language in the same way.

PS zneak mentions xcode integration for svn, but I can't judge how useful it is.

edit
Git community book seems like a good starting point too. I'll add it to the tag wiki.

Community
  • 1
  • 1
Nikita Rybak
  • 67,365
  • 22
  • 157
  • 181