一个Git项目多个仓库
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                一个Git项目多个仓库
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                方法一:(使用 “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 origingit 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.gitfetch = +refs/heads/*:refs/remotes/github/*url = https://github.com/lixy-github/newRepository.git
?
方法二和方法三在push的時候比較方便,但是只有1個拉取地址,而方法一有2個拉取地址和2個push地址,所以個人推薦方法一。
轉載于:https://www.cnblogs.com/lxynn/p/10298640.html
總結
以上是生活随笔為你收集整理的一个Git项目多个仓库的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: UV打印机多少钱一台?
- 下一篇: 洱海坐船多少钱一个人
