-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathupdate_mirrors.sh
More file actions
executable file
·62 lines (47 loc) · 1.32 KB
/
update_mirrors.sh
File metadata and controls
executable file
·62 lines (47 loc) · 1.32 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
set -x
echo "------------------------------"
cd /home/fg/fgtracker
git fetch --prune origin
git push --mirror git@github.com:FlightGear/fgtracker.git
cd ..
echo "------------------------------"
cd /home/fg/fgms
git fetch --prune origin
git push --mirror git@github.com:FlightGear/fgms.git
cd ..
echo "------------------------------"
cd /home/fg/flightgear
git fetch --prune origin
git push --mirror git@github.com:FlightGear/flightgear.git
cd ..
echo "------------------------------"
cd /home/fg/simgear
git fetch --prune origin
git push --mirror git@github.com:FlightGear/simgear.git
cd ..
echo "------------------------------"
cd /home/fg/fgrun
git fetch --prune origin
git push --mirror git@github.com:FlightGear/fgrun.git
cd ..
echo "------------------------------"
cd /home/fg/fgmeta
git fetch --prune origin
git push --mirror git@github.com:FlightGear/fgmeta.git
cd ..
echo "------------------------------"
cd /home/fg/openradar
git fetch --prune origin
git push --mirror git@github.com:FlightGear/openradar.git
cd ..
echo "------------------------------"
cd /home/fg/terragear
git fetch --prune origin
git push --mirror git@github.com:FlightGear/terragear.git
cd ..
echo "------------------------------"
cd /home/fg/sceneryweb
git fetch --prune origin
git push --mirror git@github.com:FlightGear/SceneryWeb.git
cd ..