前言
當你將本機端的 Git 加入到遠端的 repository 像是 GitHub …等,若之後你又另外建立新的的 repository 或是要將它搬移至其他遠端數據庫例如 GitLab。此時要刪除原本的 remote origin 該怎麼做?
解決方法
1 . Change the URI (URL) for a remote Git repository
第一個方法直接用指令修改 remote 遠端數據庫的位置(URL)
git remote set-url origin git://new.url.here
2 . Delete remove origin
第二個方法是使用指令刪除舊有的 remote
To remove a remote:
git remote remove origin
To add a remote:
git remote add origin yourRemoteUrl
Finally
git push -u origin master
版主10在2020年首次開設YouTube頻道,嘗試拍攝程式教學。想要了解更多的朋友歡迎關注我的頻道,您的訂閱就是最大的支持~如果想學其他什麼內容也歡迎許願XD
https://www.youtube.com/channel/UCSNPCGvMYEV-yIXAVt3FA5A
https://www.youtube.com/channel/UCSNPCGvMYEV-yIXAVt3FA5A