为 git 동아리 첨가

3254 단어 Git

转自: htp // 기아오기 아오카 t. 기주 b. 이오 / 토오 l / 기 t 오리 긴 /

일직 사용 GitHub 托管代码, 단 최근 觉得下载 속도 太慢了.所以打算把仓库同步到 htps : // 코데 p. 아 윤. 코m/ 上,下载的时候可以速.

노전적 조작



设定不動的remote、分别推送、感觉很麻烦
git remote add origin https://github.com/USERNAME/REPO1.git
git remote add gitee https://gitee.com/USERNAME/REPO2.git

git push origin master
git push gitee master

다지지적 remote repo



일반 방문 최가방법 시선 origin 设两个地址:
git remote set-url origin --add https://github.com/USERNAME/REPO1.git
git remote set-url origin --add https://github.com/USERNAME/REPO2.git

在.git/config 리득도
...
[remote "origin"]
    url = https://[email protected]/USERNAME/REPO1.git
    url = https://[email protected]/USERNAME/REPO2.git
...
[branch "master"]
    remote = origin
...

然后 git push origin master 취회 동종 추송 도착 两个 repo, 而 git pull origin master 会从两个 repo 마을 취득 갱신.

당연히 URL 和 repo 不定非要是 GitHub 上的、具有两个 url 的 remote 也不一定要是 origin, 比如可以设置成 all.

只用于 push 的备份 repo



你想从 repo1 pull,但是 push 的时後要推送到 repo1 和 repo2.
git remote set-url origin --add https://github.com/USERNAME/REPO1.git
git remote set-url origin --push --add https://example.com/USERNAME/REPO2.git

在.git/config 리득도
...
[remote "origin"]
    url = https://[email protected]/USERNAME/REPO1.git
    pushurl = https://[email protected]/USERNAME/REPO2.git
...
[branch "master"]
    remote = origin
...

然后 git push origin master 취회 동자제교도 两个 repo, 而 git pull origin master 只会从repo1 마을 취득 갱신.

码云 ㅡㅡㅡㅡㅡ코m/



如果码云导入的是github项目、会10分钟左右同步一次、你也可以点击同歉按钮手动同步.






참고:

좋은 웹페이지 즐겨찾기