🤖
gitのremote URLを確認する
URL確認方法1 get remote コマンドのvオプションで確認
git remote -v
origin https://github.com/ユーザー名/リポジトリ名.git (fetch)
origin https://github.com/ユーザー名/リポジトリ名.git (push)
originはリモートリポジトリの名前
fetchはfetchしてくるURL
pushのpush先のURL
URL確認方法2 get remote のget-urlにリモートリポジトリ名
git remote get-url origin
https://github.com/ユーザー名/リポジトリ名.git
URL確認方法3 get config --getオプションで確認
git config --get remote.origin.url
https://github.com/ユーザー名/リポジトリ名.git
新しいURLを設定する
git remote set-url origin {new url}
Discussion