目次
リモートリポジトリをローカル環境に複製する
git clone [cloneする対象リポジトリのURL]
現在のリモートリポジトリのURLを確認する
git remote -v
リモートリポジトリを変更する
git remote set-url origin [変更したいリポジトリのURL]
変更したリモートリポジトリのURLになっているか確認する
git remote -v
ローカルのmainブランチをpushする
git push origin main
以上!!!
git clone [cloneする対象リポジトリのURL]
git remote -v
git remote set-url origin [変更したいリポジトリのURL]
git remote -v
git push origin main
以上!!!