Skip to content

Latest commit

 

History

History
181 lines (96 loc) · 5.85 KB

repo-rename.md

File metadata and controls

181 lines (96 loc) · 5.85 KB
title titleSuffix description ms.assetid ms.technology ms.topic monikerRange ms.date
Rename a Git repo in your project
Azure Repos
You can rename a Git repository in a few steps. Your team will have to take a few more steps to adapt to the change.
05971618-4ea9-4997-bb51-2d74211352ef
devops-code-git
conceptual
<= azure-devops
02/23/2022

Rename a Git repository in your project

[!INCLUDE version-lt-eq-azure-devops] [!INCLUDE version-vs-gt-2015]

You can rename a Git repository in a project from your web browser. After you rename the repo, each member of your team should take a few steps to re-enable their dev machines to connect to the repo on the server.

[!VIDEO https://www.microsoft.com/en-us/videoplayer/embed/RE4sVSK]

Prerequisites

Rename the repository

::: moniker range=">= azure-devops-2019"

  1. From the web portal, select Repos, Files.

    View your files

  2. From the repo drop-down, select Manage repositories.

    Manage repositories

  3. Select the name of the repository from the Repositories list, choose the ... menu, and then choose Rename repository.

    Rename repository

  4. Rename the repository by typing the repo's new name and selecting Rename.

    Rename repository confirm

::: moniker-end

::: moniker range="tfs-2018"

    1. From the web portal, open the project administration page for your project and select Version Control.

    Version control settings

  1. Select the repo you want to rename under Git repositories on the left and select .... Select Rename repository... from the menu.

    Rename a repository

    [!NOTE] If the Repositories pane is not expanded, select > to expand it and display the list of repositories.

    Repositories pane

  2. Enter a new repo name in the Repository name field in the dialog, then select Rename.

    Rename repository confirm

::: moniker-end

::: moniker range="azure-devops" [!INCLUDE az-repos-update]

::: moniker-end

[!INCLUDE temp]


Update the Git remotes on your dev machines

Git uses remote references to fetch and push changes between your local copy of a repository and the remote version that is stored on the server. After a Git repository or project has been renamed, you should update your remote references. Update your references to that the remote repository URL contains the project and the repository name.

Each member of your team must update their local Git repos to continue connecting from their dev machines to the repo in the project. The instructions below show how to update the remotes for the Fabrikam Mobile repo that was renamed to Fabrikam.

Get the new URL for the repo

::: moniker range=">= azure-devops-2019"

  1. Select Repos, Files.

    View your files

  2. Select Clone in the upper-right corner of the Files window and copy the clone URL.

    Retrieve the clone URL

::: moniker-end

::: moniker range="tfs-2018"

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

    Retrieve the clone URL

::: moniker-end

Update your remote in Visual Studio

  1. Connect to the repo.

    Connect to the repository

  2. Open the project settings.

    Project settings

  3. Open the repo settings.

    Repository settings

  4. Edit the fetch and push remote references and paste the URL that you copied from the remote repo.

    Edit remote

Update your remote in older versions of Visual Studio from the command prompt

If you use an older version of Visual Studio or work with Git from the command prompt:

  1. Open the Git command prompt.

  2. Go to the local repository and update the remote to the URL you copied from the remote repo.

    git remote set-url origin {URL_you_copied_from_the_remote_repo}

Refresh Team Explorer

  1. Refresh Team Explorer.

    Refresh Team Explorer

  2. Team Explorer now shows the updated repo name.

    Team Explorer Updated

Q&A

Q: Can I rename my repo again? Can I reuse an old repo name?

A: Yes

Q: What if I named my remote something other than the default origin?

A: If you're using:

  • Visual Studio 2015, then edit the remote with the name you used.

  • An older version of Visual Studio or the command prompt, then run this command: git remote set-url {remote_name} {URL_you_copied_from_the_remote_repo}

Related articles