【更新】リモートリポジトリの編集(変更とか削除とか)

直接編集

.git/configを直接編集しちゃってもOK 😀

[code]
[remote "origin"]
url = hoge@hoge.git.xxxx.xx:/xxxx/xxxx.git
url = fuga@fuga.git.xxxx.xx:/xxxx/xxxx.git
[/code]

これだと、remote_name 変えずにいっぺんにできて楽ちんだったりして 😀

…ばらばらに散らばったメモをなんとかしないと…😅

先ずはリモートリポジトリの確認(これはよく使ってた)

[code]git remote -v[/code]

リモートリポジトリの追加(複数登録するときとかも)

[code]git remote add remote_name ssh@git.xxxxxxx[/code]

リモートリポジトリを変更(これ今日知った…多分どこかで読んで忘れて他と思う)

[code]git remote set-url remote_name ssh@git.xxxxxxx[/code]

リモートリポジトリを削除

[code]git remote rm remote_name[/code]

※ これは、単にgit addの参照先を削除するだけで、サーバからは削除されないからね〜らしい

Note: git remote rm does not delete the remote repository from the server. It simply removes the remote and its references from your local repository.(https://help.github.com/articles/removing-a-remote/)

参照