当前位置:   article > 正文

git同步代码至github和gitee(码云)

如何与gitee上的代码同步

:本文出自博主:chloneda

我们有时候开发代码需要把代码同步到多个远程库中,如何操作才能做到呢?

我们知道,git是分布式版本控制系统,同步到多个远程库时,需要用不同的名称来标识不同的远程库,而git给远程库起的默认名称是origin。所以我们需要修改、配置名称,以关联不同远程库。有两种方式!

为了方便举例,我以GitHub和Gitee(码云)作为示例!

同步方式

命令方式同步

先删除已关联的名为origin的远程库:

git remote rm origin

然后,先关联GitHub的远程库:

git remote add github git@github.com:chloneda/demo.git

接着,再关联码云的远程库:

git remote add gitee git@gitee.com:chloneda/demo.git

配置方式同步

修改.git文件夹内的config文件:

  1. [core]
  2. repositoryformatversion = 0
  3. filemode = true
  4. bare = false
  5. logallrefupdates = true
  6. [remote "origin"]
  7. url = git@github.com:chloneda/demo.git
  8. fetch = +refs/heads/*:refs/remotes/github/*
  9. [branch "master"]
  10. remote = origin
  11. merge = refs/heads/master

将上述文件内容[remote "origin"]内容复制,修改origin名称,内容如下:

  1. [core]
  2. repositoryformatversion = 0
  3. filemode = true
  4. bare = false
  5. logallrefupdates = true
  6. [remote "github"]
  7. url = git@github.com:chloneda/demo.git
  8. fetch = +refs/heads/*:refs/remotes/github/*
  9. [remote "gitee"]
  10. url = git@gitee.com:chloneda/demo.git
  11. fetch = +refs/heads/*:refs/remotes/gitee/*
  12. [branch "master"]
  13. remote = origin
  14. merge = refs/heads/master

查看远程库

通过以上两种方式的任一种方式配置完成后,我们用git remote -v查看远程库信息:

  1. gitee git@gitee.com:chloneda/demo.git (fetch)
  2. gitee git@gitee.com:chloneda/demo.git (push)
  3. github git@github.com:chloneda/demo.git (fetch)
  4. github git@github.com:chloneda/demo.git (push)

可以看到两个远程库,说明配置生效了。

上传代码

  1. git add .
  2. git commit -m "update"

提交到github

git push github master

提交到码云

git push gitee master

更新代码

  1. # 从github拉取更新
  2. git pull github
  3. # 从gitee拉取更新
  4. git pull gitee

踩到的坑

上述过程中,更新或提交代码时可能会遇到fatal:refusing to merge unrelated histories (拒绝合并无关的历史) 错误,解决办法:

首先将远程仓库和本地仓库关联起来。

git branch --set-upstream-to=origin/remote_branch  your_branch

其中,origin/remote_branch是你本地分支对应的远程分支,your_branch是你当前的本地分支。

然后使用git pull整合远程仓库和本地仓库。

git pull --allow-unrelated-histories    (忽略版本不同造成的影响)

重新更新、提交即可。

注: 如遇到 Git没有共同祖先的两个分支合并 的情形请自行查询!


转载于:https://www.cnblogs.com/chloneda/p/git-to-github-gitee.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/773317
推荐阅读
相关标签
  

闽ICP备14008679号