>  기사  >  개발 도구  >  Github와 Gitee를 동기화하는 방법은 무엇입니까?

Github와 Gitee를 동기화하는 방법은 무엇입니까?

Guanhui
Guanhui원래의
2020-06-05 15:32:276705검색

Github와 Gitee를 동기화하는 방법은 무엇입니까?

Github과 Gitee를 동기화하는 방법은 무엇입니까?

먼저 Github와 Gitee의 원격 저장소를 연결하세요.

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

그런 다음 ".git" 폴더에서 구성 파일을 열고 Github 라이브러리 하나와 Gitee 라이브러리 두 개를 변경하세요. 위 파일의 내용 [remote "origin"] 내용을 복사하고 원본 이름을 수정합니다. 내용은 다음과 같습니다.

[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

최종 코드는 각각 Github와 Gitee에 제출할 수 있습니다.


github에 제출

[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

코드 클라우드에 제출

git push github master

추천 튜토리얼: "

Git Tutorial

"

위 내용은 Github와 Gitee를 동기화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.