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!

Accepted Reply

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.

Replies

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.

  • Git is available in Xcode, and includes built-in support for GitHub, GitLab and Bitbucket accounts (which I think all have a free tier).I've used all three of these (with different clients), and they all work well.Or if you want to roll your own, you can host your own remote repository.

Add a Comment

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/