git push多个远程仓库

我最近想把github上的仓库都推送到coding上,所以就了解了一下git

git是个优秀的版本控制软件(佩服Linus Torvalds ✪ ω ✪)
可以推送到多个远程仓库, 比如github, coding, 即时是github上的多个仓库也行, 只要是多个url(不过这样可能没有意义)

关联多个仓库

只需要通过git remote add 即可关联多个仓库
refs 指向远程仓库, 默认的就是origin, addr 就是仓库地址了,比如[email protected]:mbinary/netease-cached-music.git

输入
git remote add origin [email protected]:mbinary/netease-cached-music.git
报错

fatal: remote origin already exists.

这是远程仓库的refs相同的原因, 可以换个名字, 比如cod
git remote add cod [email protected]:mbinary/netease-cached-music.git
即可,然后就关联上了多个仓库, 可以通过git remote -v 查看,

origin.png

也可以进入 .git/config查看

git push多个远程仓库_第1张图片
config.png

多个仓库的git push

方法一--- 逐个push

通过git push --help可以看到
git push直接用的话默认的是push到origin ,

git push多个远程仓库_第2张图片
gitpush.png

所以要到不同仓库需要
使用git push 多次

方法二-- 一条命令全部push

可以写个sh脚本处理

搜索发现还有另一种方法,
即在一个
ref下设置多个url

通过git remote set-url --add origin [email protected]:mbinary/netease-cached-music.git
来关联新的远程仓库,
可以进入.git/config发现origin下新加入了这个远程仓库的url

[remote "origin"]
        url = [email protected]:mbinary/netease-cached-music.git
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = [email protected]:mbinary/netease-cached-music.git

这样git push origin就可以全部push到所有仓库
但是git pull 会出问题,只会pull第一个url的, 而且可能还会冲突, 所以这两种方法自己选择吧,如果不pull,显然方法2比较方便

你可能感兴趣的:(git push多个远程仓库)