-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyncconfig.py
More file actions
29 lines (27 loc) · 735 Bytes
/
syncconfig.py
File metadata and controls
29 lines (27 loc) · 735 Bytes
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
REPODIR="/tmp/gitsync"
REPOLIST = [
{
# "srcrepo" : "https://github.com/openwrt/openwrt.git",
# "dstrepo" : "https://github.com/freifunk-berlin/openwrt-core.git",
"srcremote" : "upstream",
"dstremote" : "origin",
"workdir" : "openwrt",
"user" : "SAm0815",
"pass" : "test",
"branches" : {
"master" : "master",
"lede-17.01" : "lede-17.01",
},
}, {
# "srcrepo" : "https://github.com/openwrt/luci.git",
# "dstrepo" : "https://github.com/freifunk-berlin/openwrt-luci.git",
"srcremote" : "upstream",
"dstremote" : "origin",
"workdir" : "luci",
"user" : "SAm0815",
"pass" : "test",
"branches" : {
"master" : "master",
},
},
]