What's the best way for a remote team to work on an xcode project?

Hi Gang, What's the best way for a remote team to work on an xcode project?

I've been working on a project myself, and would like to hire a remote developer to come in and help me add some features to my app. I was planing on compressing my entire project folder and sending it via dropbox, then have them work on it and send it back. But that just seems so inefficient, not to mention, involves me giving up my code.

Isn't there a better way? For example, I know that Unity lets you set up for teams to work on projects.

Thx!

Answered by robnotyou in 683774022

Use git, with a remote repository, then you get all the benefits of source control.

e.g. you can review your remote worker's changes, before merging them into the main project.

I use git for even the smallest Xcode project now, but for a team, it's a no-brainer.
Lots of help is available online.

Accepted Answer

Use git, with a remote repository, then you get all the benefits of source control.

e.g. you can review your remote worker's changes, before merging them into the main project.

I use git for even the smallest Xcode project now, but for a team, it's a no-brainer.
Lots of help is available online.

Use Git!

You can use git, with "remote repository". With git you can work online with your team. The manager of the project can edit everything. Also the manager of the project will have to approve all the changes that the team will do.

I use git all the time with my team. It's easy to use. In my opinion is the best for the use of a team work project.

Thanks guys. I'm new... what is the url? just to make sure I don't end up on some git imitation site.

If you search for put Xcode project on GitHub in a search engine, you will find many articles on setting up git with Xcode, including the following:

swiftdevjournal.com/putting-your-xcode-project-on-github-bitbucket-or-gitlab/

What's the best way for a remote team to work on an xcode project?
 
 
Q