git-rename-remote

Rename a Git remote

TLDR

Rename remote
$ git rename-remote [old_name] [new_name]

SYNOPSIS

git rename-remote oldname newname

DESCRIPTION

git rename-remote renames a Git remote. Part of git-extras, it is a convenience wrapper around `git remote rename`.

INSTALL

sudo apt install git
sudo dnf install git
sudo pacman -S git
sudo apk add git
sudo zypper install git
brew install git
nix profile install nixpkgs#git

CAVEATS

Requires git-extras to be installed. The standard `git remote rename` command provides equivalent functionality and is available in all Git installations.

SEE ALSO

git-remote(1), git-extras(1)