Skip to content

Latest commit

 

History

History
90 lines (52 loc) · 4.23 KB

share-your-code-in-git-xcode.md

File metadata and controls

90 lines (52 loc) · 4.23 KB
title description ms.assetid ms.prod ms.technology ms.manager ms.author author ms.topic ms.date monikerRange
Share your Xcode project with Git | VSTS & TFS
Share code in Git using Xcode
f1fedd72-d9b9-45cf-99aa-2e624c899c45
devops
devops-code-git
douge
sdanie
steved0x
quickstart
08/30/2017
>= tfs-2015

Share your code in Git using Xcode

VSTS | TFS 2018 | TFS 2017 | TFS 2015

This guide shows you how to share your Xcode projects in a VSTS Git repo.

Prerequisites

  • A VSTS account. If you don't have one, you can sign up for one for free. Each account includes free, unlimited private Git repositories.

Create a local Git repo for your Xcode project

Create a local Git repo for your code to manage your project in version control.

If your project is already in a local Git repo, you can skip ahead to Create a new VSTS repo.

New projects

Create a local Git repo when you create a new project. Choose Create Git repository on My Mac when creating a new project.

Create a Git repo at the time of Xcode project creation

Existing projects

Create a local Git repo for your existing projects not in version control by going to Source Control, Create Working Copy... . Select the projects to add to the local Git repo and select Create. Xcode creates a Git repo for your code and adds a commit with your project files.

Add a local Git repo to an existing Xcode project

Create a new VSTS repo

Create a new Git repo in VSTS for your Xcode project.

If you have already created a repo for your Xcode project in VSTS, you can skip ahead to Push your project.

  1. Browse to your Team Project in your VSTS account and select the drop-down VSTS drop-down picker next to the name of the current Git repo. Select New Repository..
    Create a new Git repo in VSTS

  2. Enter a name for your new Git repo and select Create. Your browser will navigate to your new empty Git repo for your Xcode project. Copy the clone URL to the clipboard so that you can use it in Xcode to connect to VSTS.

Copy the clone URL for your new Git repo

Note

If you want to use SSH to connect to your VSTS Git repo, Set up SSH credentials and use the SSH clone URL when adding the remote for your local Git repo.

Push your project

  1. Go to Source Control in Xcode and select Projectname -- master, then Configure...

Configure your Xcode Git project settings

  1. Select Remotes, then select the plus icon and choose Add Remote...

  2. In the Address field, paste the Git clone URL for your VSTS repo copied in the previous step. Select Add Remote, then select Done to finish creating the origin remote for your local Git repo.

Add a remote to the local Git repo for your Xcode project to connect to VSTS

  1. Go to Source Control, Push..., enter the branchname on origin to push to, and select Push.

Push your Xcode project to VSTS

  1. If prompted, enter your VSTS credentials. For Username, enter your VSTS username. For Password, enter a Personal Access Token created for your user in VSTS. Select OK.

Authenticate using personal access tokens to VSTS

Xcode will push your project to your VSTS Git repo so you can share it with your team.

Next steps

[!div class="nextstepaction"] Learn more about using Git in the Git tutorial