環境
- git version 2.13.3.windows.1
行いたいこと
- fetch、push の URL を変更したい。
- 具体的には次のようにしたい。
- 修正前の状態
- origin. http://example.com/pj-a.git (fetch)
- origin. http://example.com/pj-a.git (push)
- origin. http://example.com/pj-b.git (push)
- 修正後の状態
- origin. http://example.com/pj-b.git (fetch)
- origin. http://example.com/pj-b.git (push)
- 以上を、Git のコマンドを使って行いたい。
使用コマンドまとめ
# リモートリポジトリの設定確認 git remote -v # ローカルリポジトリの設定ファイル内容表示 cat .git/config # リモートリポジトリの URL 削除 git remote set-url --delete <name> <url> # リモートリポジトリの削除 git remote remove <name> # リモートリポジトリの追加 git remote add <name> <url>
ちなみに、今回の目的から外れるが、Git コマンドを使用しないで同様のことを行いたい場合は、.git/config ファイルを編集すればよい。