-
Notifications
You must be signed in to change notification settings - Fork 7
/
MIRROR
38 lines (28 loc) · 1.03 KB
/
MIRROR
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
#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 [email protected]:galaxy001/pirs.git
git push -u github master
git remote add sf ssh://[email protected]/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://[email protected]/p/pirsim/code
[remote "github"]
url = [email protected]: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://[email protected]/p/pirsim/code
fetch = +refs/heads/*:refs/remotes/sf/*