管理人Kのひとりごと

デジモノレビューやプログラミングや写真など

リモートリポジトリのURLを変更する(git)

つい忘れがちなリモートリポジトリのURLの変更方法を記載する。

まずは現在の設定を確認

$ git remote -v
origin  ssh://git@192.168.0.100/home/git/repos/hoge.git (fetch)
origin  ssh://git@192.168.0.100/home/git/repos/hoge.git (push)

リモートリポジトリのURLを変更する

$ git remote set-url origin ssh://git@192.168.0.101/home/git/repos/hoge.git

変更されたことを確認

$ git remote -v
origin  ssh://git@192.168.0.101/home/git/repos/hoge.git (fetch)
origin  ssh://git@192.168.0.101/home/git/repos/hoge.git (push)

以上です。