Skip to content

Latest commit

 

History

History
109 lines (68 loc) · 6 KB

create-new-repo.md

File metadata and controls

109 lines (68 loc) · 6 KB
title description ms.assetid ms.prod ms.technology ms.manager ms.author author ms.topic ms.date monikerRange
Create a new Git repo in your project | VSTS & TFS
Create a new Git repo in a VSTS or Team Foundation Server Project
9c6fabfa-ae17-4e65-93a2-9e476f9f88ba
devops
devops-code-git
douge
sdanie
steved0x
quickstart
03/08/2018
>= tfs-2015

Create a new Git repo in your project

VSTS | TFS 2018 | TFS 2017 | TFS 2015

VSTS and TFS projects contain Git repositories, work items, builds, and releases. You can use Git repos in your projects to manage your source code as your project grows. This guide shows you how to create a Git repo using the web portal for either VSTS (VSTS - hosted on Azure) or Team Foundation Server (TFS - on-premises).

Prerequisites

Create a repo using the web portal

  1. Navigate to your project by browsing to https://<your account name>.visualstudio.com and selecting the name of your project. You can select it from the All projects list, or from the Recent projects list if you have accessed it recently.

Select project

  1. In the Project area in the web portal, select Code, then select the drop-down next to the current repo name and choose New Repository.

Choose new repository from the web portal

  1. In the Create a new repository dialog, verify that Git is the repo type and enter a name for your new repo. You can also choose to add a README and create a .gitignore for the type of code you plan to manage in the repo. A README contains information about the code in your repo, and a .gitignore file tells Git which types of files to ignore, such as temporary build files from your development environment.

Set options for your new repo in the Create a Git repo dialog

  1. When you're happy with the repo name and choices, select Create.

A new empty Git repo is now created in your project.

- If you created an empty repo (no README or .gitignore), you'll see instructions on how to [clone](tutorial/clone.md) the repo to your computer or [push](tutorial/pushing.md) code in an existing repo into the newly created one.
- In this example you created a README and a .gitignore, so you'll see an overview of the files in your repo, and you can [clone](tutorial/clone.md) the repo using the **Clone** link on the upper right of the page to get working with a local copy of the repo immediately. 

Clone the repo to your computer

To work with a Git repo, you clone it to your computer. Cloning a repo creates a complete local copy of the repo for you to work with, and downloads all commits and branches in the repo and sets up a named relationship with the repo on the server. Use this relationship to interact with the existing repo, pushing and pulling changes to share code with your team.

  1. Select Clone in the upper-right corner of the Code window and copy the Clone URL.

Retrieve the clone URL

  1. Open the Git command window (Git Bash on Git for Windows), navigate to the folder where you want the code from the repo stored on your computer, and run git clone followed by the path copied from the Clone URL in the previous step, as shown in the following example.
git clone https://contoso-ltd.visualstudio.com/MyFirstProject/_git/contoso-demo

After running the previous command, Git downloads a copy of the code, including all commits and branches from the repo, into a new folder for you to work with.

Keep this command window open, as you'll use it in the following steps.

Work with the code

In this step, we'll make a change to the files on your computer, commit the changes locally, push the commit up to the repo that is stored on the server, and view the changes there.

  1. Browse to the folder on your computer where you cloned the repo and open the README.md file in your editor of choice.

  2. Make some changes, for example add This is my first edit. to the file, and save and close the file.

  3. In the Git command window, navigate to the contoso-demo directory by entering the following command:

cd contoso-demo
  1. Commit your changes by entering the following command in the Git command window:
git commit -a -m "My first commit"

When using git commit, -a means to commit all changed files, and -m specifies a commit message.

  1. Push your changes up to the Git repo on the server by entering the following command into the Git command window:
git push
  1. Switch back to the web portal and select History from the Code view to view your new commit. The new repo has two commits: the first commit where the README and .gitignore were added when the repo was created, and the commit you just made.

View commit history

  1. Switch to the Files tab and click on the README file to view your changes.

View changed file

Next steps

[!div class="nextstepaction"] New to Git repos? Learn more

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