您现在的位置是:首页 > 其他

李清波 2020-03-31 其他 1084 复制当前网址

git同步更新GitHub和码云

首先github和码云上的仓库都要建好。然后将其中一个仓库clone到本地

git clone XXXXX

修改.git里面的配置文件config

[core]    
repositoryformatversion = 0    
filemode = false    
bare = false    
logallrefupdates = true    
symlinks = false    
ignorecase = true
[remote "github"]    
url = https://github.com/****/note    
fetch = +refs/heads/*:refs/remotes/origin/*
# 添加码云的url
[remote "gitee"]    
url = https://gitee.com/****/note    
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]    
remote = origin    merge = refs/heads/master

提交代码时

git add .
git commit -m "update"
#提交到github
git push github master
#提交到码云
git push gitee master

拉取更新时

#从github拉取更新
git pull github
#从码云拉取更新
git pull gitee如果很少拉取更新或者嫌上面这个麻烦可以


[core]    
repositoryformatversion = 0    
filemode = false    
bare = false    
logallrefupdates = true    
symlinks = false    
ignorecase = true
[remote "origin"]    
url = https://github.com/****/note    
# 在这里添加码云的url
url = https://gitee.com/****/note    
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]    
remote = origin    
merge = refs/heads/master

这样提交时只用git push origin master,不用分别提交。



文章来源:https://www.liqingbo.com/blog-1678.html

评论