Git
gitリポジトリ名を変更する
サーチ…
前書き
githubやbitbucketのようなリモート側のリポジトリ名を変更すると、既存のコードをプッシュするとエラー:致命的なエラー、リポジトリが見つかりません。**が表示されます。
ローカル設定を変更する
ターミナルに行く、
cd projectFolder
git remote -v (it will show previous git url)
git remote set-url origin https://[email protected]/username/newName.git
git remote -v (double check, it will show new git url)
git push (do whatever you want.)
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow