方法一:(使用 “git remote add 倉庫名” 命令)--推薦
第一個倉庫(默認倉庫)
git remote add origin https://github.com...... git push -u origin master
第二個倉庫(着色部分便是第二倉庫)
git remote add newRepository https://github.com...... git push -u newRepository master
取消關聯時:git remote remove newRepository
git remote newRepository origin git remote -v newRepository https://github.com/lixy-github/newRepository.git (fetch) newRepository https://github.com/lixy-github/newRepository.git (push) origin http://....com:5678/gitbucket/git/Li.XY/Pride.git (fetch) origin http://....com:5678/gitbucket/git/Li.XY/Pride.git (push)
可以看到兩個倉庫狀態,但是要push兩次。
方法二:(使用 “git remote set-url” 命令)
git remote set-url --add
newRepository https://git.hub.com/......
git remote -v newRepository https://github.com/lixy-github/newRepository.git (push) origin http://....com:5678/gitbucket/git/Li.XY/Pride.git (fetch) origin http://....com:5678/gitbucket/git/Li.XY/Pride.git (push)
可以看到遠程倉庫有兩個 push 地址,這種方法的好處是每次只需要push一次就可以了。
方法三:
打開 .git/config
找到 [remote "github"]
,添加對應的 url
即可,效果如下。這種方法其實和方法二是一樣的。
[remote "github"] url =http://....com:5678/gitbucket/git/Li.XY/Pride.git fetch = +refs/heads/*:refs/remotes/github/* url = https://github.com/lixy-github/newRepository.git
方法二和方法三在push的時候比較方便,但是只有1個拉取地址,而方法一有2個拉取地址和2個push地址,所以個人推薦方法一。