File tree Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ .DS_Store
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+
4
+ # From http://github.com/wilsonmar/checkall.sh
5
+ # Based on http://steve-parker.org/sh/functions.shtml
6
+
7
+ # Before calling this, run: chmod a+x checkall.sh
8
+ # Call from command line: ./rn checkall.sh
9
+
10
+ NOW=$( date)
11
+ echo " ***** ${NOW} ."
12
+
13
+ HOST=" https://github.com/wilsonmar"
14
+
15
+ checkone ()
16
+ {
17
+ echo " _"
18
+ echo " ***** REPO=${HOST} /${REPO} ******"
19
+ cd ${REPO}
20
+ git status
21
+ git fetch
22
+ cd ..
23
+ }
24
+
25
+ # Move up
26
+ cd ..
27
+
28
+ # Do each (alphabetically):
29
+ REPO=" git-utilities"
30
+ checkone
31
+
32
+ REPO=" oss-perf"
33
+ checkone
34
+
35
+ REPO=" SAP-HANA"
36
+ checkone
37
+
38
+ REPO=" scala"
39
+ checkone
40
+
41
+ # Move back down
42
+ cd git-utilities
43
+
44
+ echo " ******"
You can’t perform that action at this time.
0 commit comments