Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of synchronization between Github and Gitee

2025-01-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail how to synchronize Github and Gitee. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

How does Github synchronize with Gitee?

First associate the remote warehouse of Github and Gitee

Git remote add github git@github.com:code/demo.gitgit remote add gitee git@gitee.com:code/demo.git

Then open the configuration file in the ".git" folder; then modify remote to change two, one Github library and one Gitee library

[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = git@github.com:chloneda/demo.git fetch = + refs/heads/*:refs/remotes/github/* [branch "master"] remote = origin merge = refs/heads/master

Copy the contents of the above file [remote "origin"], and modify the origin name, as follows:

[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "github"] url = git@github.com:chloneda/demo.git fetch = + refs/heads/*:refs/remotes/github/* [remote "gitee"] url = git@gitee.com:chloneda/demo.git fetch = + refs/heads/*:refs/remotes/gitee/* [branch "master"] remote = origin merge = refs/heads/master

Finally, the code can be submitted to Github and Gitee respectively.

Submit to github

Git push github master

Submit to yuyun

Git push gitee master on Github and Gitee synchronization methods to share here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report