公司搬移, 做爲git倉庫的服務器IP地址變了。 本地代碼挺多,從新檢出太佔時間,能夠修改一個什麼配置讓我本地倉庫和新的遠程倉庫創建關聯嗎, 答案是確定的!git
如下均以項目git_test爲例:
老地址:http://192.168.1.12:9797/john/git_test.git
新地址:http://192.168.100.235:9797/john/git_test.git
遠程倉庫名稱: originvim
1.進入git_test根目錄服務器
2.git remote 查看全部遠程倉庫, git remote xxx 查看指定遠程倉庫地址fetch
3.git remote rm originurl
4.git remote add origin http://192.168.100.235:9797/john/git_test.gitspa
vim config.net
[core] repositoryformatversion = 0 filemode = true logallrefupdates = true precomposeunicode = true [remote "origin"] url = http://192.168.100.235:9797/shimanqiang/assistant.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master
修改 [remote 「origin」]下面的url便可code
以SourceTree爲例,點擊 倉庫 -> 倉庫配置 -> 遠程倉庫 便可管理此項目中配置的全部遠程倉庫, 並且這個界面最下方還能夠點擊編輯配置文件,一樣能夠完成方法三。orm
原文連接:https://blog.csdn.net/asdfsfsdgdfgh/article/details/54981823blog