您的位置:首页 > 编程语言

Git管理多个远程仓库(GitHub和Coding)

2015-12-23 19:06 309 查看

两个空代码仓库

如果是两个仓库都是空的,就直接在 .git/config 中添加远端地址

[remote "origin"]
url = https://github.com/younglaker/octjs.git url = https://git.coding.net/laker/octjs.git  #添加新地址
fetch = +refs/heads/*:refs/remotes/origin/*


地址是配好了,但是还要注意分支一致。我这里都用master,就不会有问题。


非空代码仓库

假设Github中使用了一段时间,想在Coding里备份一个,要想把两边仓库同步到一致的状态。

线到Coding新建仓库,获得地址后, .git/config 中添加Coding的远端地址,这里我命名为coding:

[remote "origin"]
url = https://github.com/younglaker/octjs.git fetch = +refs/heads/*:refs/remotes/origin/*
[remote "coding"]   #添加coding远端
url = https://git.coding.net/laker/octjs.git  #远端地址
fetch = +refs/heads/*:refs/remotes/coding/*  #注意修改远端名


使用Git GUI 获取 Coding上的信息,你也可以使用命令行完成一下操作:



合并:



推送,记得选Coding远端:



然后再修改 .git/config ,吧Coding也用origin远端名,下次就只用 git push 就可以推送到两边了。重启 Git GUI 也只剩一个远端了:

[remote "origin"]
url = https://github.com/younglaker/octjs.git url = https://git.coding.net/laker/octjs.git fetch = +refs/heads/*:refs/remotes/origin/*



Github 不为空,Coding为新建项目

那就在Coding新建项目时导入Github项目,本地git配置改为:

[remote "origin"]
url = https://github.com/younglaker/octjs.git url = https://git.coding.net/laker/octjs.git fetch = +refs/heads/*:refs/remotes/origin/*
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: