1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
#summary "miror"-ed repo.
#labels Phase-Implementation
= Introduction =
Google Code cannot be accessed from China directly with SSL, so mirror sites are created for co-authors.
= Details =
List:
* Text in *bold* or _italic_
* https://github.com/galaxy001/pirs
* https://sourceforge.net/projects/pirsim/
CLI:
git remote add github git@github.com:galaxy001/pirs.git
git push -u github master
git remote add sf ssh://galaxy001@git.code.sf.net/p/pirsim/code
git push -u sf master
git remote add google https://code.google.com/p/pirs/
.git/config
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = ssh://galaxy001@git.code.sf.net/p/pirsim/code
[remote "github"]
url = git@github.com:galaxy001/pirs.git
fetch = +refs/heads/*:refs/remotes/github/*
[remote "google"]
url = https://code.google.com/p/pirs/
fetch = +refs/heads/*:refs/remotes/google/*
[remote "sf"]
url = ssh://galaxy001@git.code.sf.net/p/pirsim/code
fetch = +refs/heads/*:refs/remotes/sf/*
|