Reputation: 59
My friend and I are creating an app and we are wondering if there is a way where we can both edit the code at the same time?
Upvotes: 1
Views: 60
Reputation: 21
Don't use SVN. You will see how easy version control could be and later everywhere on the job people will use Git because it is "better" and you will get frustrated.
Just use Git from the beginning, stay happy, you will love it. Really! 😏
The default in Xcode is Git too, so it can't be wrong.
Just be aware that the interface in Xcode is offering you a filtered version of the Git commands. As soon as you really need it for anything you will end up on the command line.
Whatever you try there, the first few times it will fail until you have learned the propper syntax and all side effects. So just make a copy of the folder, or zip or tar it before you try it a simple git command.
Also SourceTree is nice, but same problem there, learn what every command really does.
Upvotes: 2
Reputation: 1048
Use git
! Lets people edit code and track the progress of the project (among many other useful tools).
If you are looking for more of a 'Google Docs' atmosphere, I would look into Codr or Cloud9
Upvotes: 1