Create a Git repository from Visual Studio

Visual Studio makes it easy to create a repo right from the IDE. Repository creation from Visual Studio is optimized for GitHub, but you can work remotely with the Git provider of your choice. Here's how.

Prerequisites

To follow this article, you'll need:

Create a GitHub repo

  1. Open Visual Studio, and then select Create a new project.

    Tip

    If you don't already have a project in Visual Studio to add to a repo, you can quickly create a new C# console app and name it MyNewApp. Visual Studio populates your new app with default "Hello, World!" code.

  2. From the Git menu, select Create Git Repository.

    Screenshot of the Create Git Repository option from the Git menu in Visual Studio.

  3. In the Create a Git repository dialog, under the Push to a new remote section, choose GitHub.

  4. In the Create a new GitHub repository section of the Create a Git repository dialog, enter the name of the repo you want to create. (If you haven't yet signed in to your GitHub account, you can do so from this screen, too.)

    Screenshot of the Create Git Repository dialog in Visual Studio with the GitHub selection highlighted.

    Under Initialize a local Git Repository, you can use the .gitignore template option to specify any intentionally untracked files that you want Git to ignore. To learn more about .gitignore, see Ignoring files. And to learn more about licensing, see Licensing a repository.

    Tip

    You can update and change these settings whenever you want to. For detailed instructions, see Git settings in Visual Studio.

  5. After you sign in and enter your repo info, select the Create and Push button to create your repo and add your app.

Create an Azure DevOps repo

  1. Open Visual Studio, and then select Create a new project.

    Tip

    If you don't already have a project in Visual Studio to add to a repo, you can quickly create a new C# console app and name it MyNewApp. Visual Studio populates your new app with default "Hello, World!" code.

  2. From the Git menu, select Create Git Repository.

  3. In the Create a Git repository dialog, under the Push to a new remote section, choose Azure DevOps.

  4. In the Create a new Azure DevOps repository section, sign in to your Azure account, and then select a project from the Project drop-down list.

  5. Select the Create and Push button to create your repo and add your app.

Work with local repos

To create a local repo:

  1. From the Git menu, select Create Git Repository.

  2. In the Create a Git repository dialog, under Other, choose Local only.

    Screenshot of the Create Git Repository screen, showing the Local only option.

  3. Under Initialize a local Git repository, check the local path to the project, and modify any other settings if needed.

  4. Select the Create and Push button to create your repo.

After you’ve created a repo or cloned one, Visual Studio detects the Git repository and adds it to your list of Local Repositories in the Git menu. From there, you can quickly access and switch between your Git repositories.

Add another repo to a solution

When you add a new project to an existing multi-repo solution, you might want to track that project in its own repository. To do so, follow these steps:

  1. Add the project to the solution.
  2. Close the solution.
  3. Use Open a local folder to open the new project by itself.
  4. Create a new repository using the methods described earlier in this article in GitHub, Azure DevOps, another Git hosting provider, or locally (the equivalent of git init from the command line).
  5. Reopen the parent solution. The new project's repo will be included.