Quickstart: Code with Git

TFS 2017 | TFS 2015 | TFS 2013

In this quickstart, learn how to share your code with others. After you create a new organization and project in Azure DevOps, you can begin coding with Git.

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. Cloning also 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.

Install Git command-line tools

Install one of the following Git command-line tools:

Get your code

To get a copy of the source code, you clone the Git repo that contains the code. Cloning creates both a local copy of the source code so you can work with it. Cloning also creates all the version control information so Git can manage the source code.

If you're just getting started with Azure Repos, your code might be in one of several places:

I just created my organization in Azure DevOps, so I don't have any code

If you just signed up for Azure DevOps Services, by default you have a project named MyFirstProject and a Git repo named MyFirstProject. If you want to work in that repo, you can clone it and then add your code to that repo.

If you want to make a new repo, follow the steps in Create a new Git repo in your project. Then, clone the new repo and add your code there.

The code is in my (or my organization's) Azure Repos Git repo

If the code is in your (or your organization's) Azure Repo, you can clone the Git repo to your local computer and start working with it by jumping down to Clone the repo.

The code is in another Git repo

If the code is in another Git repo, such as a GitHub repo or a different Azure Repo instance, you can import it into a new or existing empty Git repo. Follow the steps in Import a Git repo. Then, return to this article and jump down to Clone the repo.

The code is on my local computer and not yet in version control

If your code is not yet in version control, you have a couple of options:

  • Create a new repository and add your code there. To create a new repository and add your code there, follow the steps in Create a new Git repo in your project. Then, come back to this article and jump down to Clone the repo.
  • Add your code to an existing repository. To do add your code to an existing repository, jump down to Clone the repo.

After the repository is cloned, we'll show you how to add your existing code to the repo.

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. Cloning also 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. From your web browser, open the project for your organization, and select Code. If you don't have a project, create one now.

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

    Screenshot of project in web browser, with Copy icon highlighted.

  3. Open the Git command window (Git Bash on Git for Windows). Go 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 Clone URL in the previous step. See the following example:

    git clone https://contoso-ltd.visualstudio.com/MyFirstProject/_git/contoso-demo
    

    Git downloads a copy of the code in a new folder for you to work with. The download includes all commits and branches from the repo.

  4. Switch your directory to the repository that you cloned.

    cd contoso-demo
    

    Keep the command window open (use it in the following steps).

Work in a branch

Git branches isolate your changes from other work being done in the project. The recommended Git workflow uses a new branch for every feature or fix that you work on.

Create branches by using the branch command. This command creates a reference in Git for the new branch. It also creates a pointer back to the parent commit so Git can keep a history of changes as you add commits to the branch.

Git always adds new commits to the current local branch. Check what branch you're working on before you commit so that you don't commit changes to the wrong branch.

Switch between local branches by using the checkout command. Git will change the files on your computer to match the latest commit on the checked-out branch.

In this step, we'll create a working branch and make a change to the files on your computer in that branch.

Use the branch command to create the branch and checkout to switch to that branch. In the following example, the new branch is named users/jamal/feature1.

git branch users/jamal/feature1
git checkout users/jamal/feature1

When you create a branch from the command line, the branch is based on the currently checked-out branch. When you clone the repository, the default branch (typically main) is checked out. Because you cloned, your local copy of main has the latest changes.

If you're working with a previously cloned repository, ensure that you've checked out the right branch (git checkout main) and that it's up to date (git pull origin main) before you create your new branch.

git checkout main
git pull origin main
git branch users/jamal/feature1
git checkout users/jamal/feature1

You can replace the first three commands in the previous example with the following command, which creates a new branch named users/jamal/feature1 based on the latest main branch.

git pull origin main:users/jamal/feature1

Switch back to the Git Bash window that you used in the previous section. Run the following commands to create and check out a new branch based on the main branch.

git pull origin main:users/jamal/feature1
git checkout feature1

Browse to the location of the repository on your local computer, make an edit to one of the files, and save it. If you're adding code from your local computer to the repository, you can add it here by copying it to the folder where you cloned the repository.

Work with the code

In the following steps, we make a change to the files on your computer, commit the changes locally, and push the commit to the repo stored on the server. We can then view the changes.

  1. Browse to the folder on your computer where you cloned the repo, open the README.md file in your editor of choice, and make some changes. Then save and close the file.

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

    cd contoso-demo
    
  3. Commit your changes by entering the following commands in the Git command window:

    git add .
    git commit -m "My first commit"
    

    The git add . command stages any new or changed files, and git commit -m creates a commit with the specified commit message.

  4. Push your changes to the Git repo on the server. Enter the following command into the Git command window:

    git push origin users/jamal/feature1
    

Your code is now shared to the remote repository, in a branch named users/jamal/feature1. To merge the code from your working branch into the main branch, use a pull request.

Review and merge your changes with a pull request

Pull requests combine the review and merge of your code into a single collaborative process. After you’re done fixing a bug or new feature in a branch, create a new pull request. Add the members of the team to the pull request so they can review and vote on your changes. Use pull requests to review works in progress and get early feedback on changes. There’s no commitment to merge the changes because you can abandon the pull request at any time.

This example shows the basic steps of creating and completing a pull request.

  1. From your web browser, open the team project for your organization and select the Code page. If you don't have a team project, create one now.

  2. Select Clone in the upper-right corner of the Code page and copy the Clone URL.

    Retrieve the clone URL

  3. Open the Git command window, for example Git Bash on Git for Windows, and browse to the folder where you want the code from the repo that is stored on your computer. Run git clone followed by the path copied from the Clone URL in the previous section, as shown in the following example.

    git clone https://dev.azure.com/contoso-ltd/MyFirstProject/_git/contoso-demo
    

    Git downloads a copy of the code into a new folder for you to work with. The download includes all commits and branches from the repo.

  4. Switch your directory to the repository that you cloned.

    cd fabrikam-web
    

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

Your changes are now merged into the main branch, and your users/jamal/feature1 branch is deleted on the remote repository. To delete your local copy of the branch, switch back to your Git Bash command prompt and run the following commands.

git checkout main
git pull origin main
git branch -d users/jamal/feature1

The git checkout main command switches you to the main branch. The git pull origin main command pulls down the latest version of the code in the main branch, including your changes and the fact that users/jamal/feature1 was merged. The git branch -d users/jamal/feature1 command deletes your local copy of that branch.

Now you're ready to create a new branch, write some code, and do it again.

View history

  1. Switch back to the web portal, and select History from the Code tab to view your new commit. Two commits appear: the first commit, where the README and .gitignore were added upon repo creation, and the commit you just made.

    View commit history

  2. Switch to the Files tab, and select the README file to view your changes.

    View changed file

Next steps