-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathgerrit-clone.sh
executable file
·55 lines (47 loc) · 1.17 KB
/
gerrit-clone.sh
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
#!/bin/bash
while [ -n "$1" ]; do
case "$1" in
--help)
help=true
;;
-*)
echo "Error: Invalid option \"$1\"."
exit 2
;;
*)
# Stop parsing options on the first non-option argument.
break
;;
esac
shift
done
if [ -n "$help" -o $# -ne 2 ]; then
echo "Rationale"
echo " Clone all projects matching the given regex pattern from Gerrit."
echo
echo "Usage"
echo " $(basename $0) <host> <pattern>"
echo
echo "Example"
echo " $(basename $0) review.openstack.org openstack-attic/akanda"
echo
echo "Options"
echo " --help"
echo " Show this help."
exit 1
fi
host=$(echo $1 | cut -d":" -f1)
port=$(echo $1 | cut -d":" -f2 -s)
[ -z "$port" ] && port=29418
pattern=$2
matches=$(ssh -p $port $host gerrit ls-projects --type code | grep -E $pattern)
if [ -z "$matches" ]; then
echo "No matching projects found."
exit 3
fi
echo "$matches"
echo
read -p "Do you want to clone these projects? [(Y)es/(n)o] " -n 1 -r
if [ "$REPLY" != "n" -a "$REPLY" != "N" ]; then
echo "$matches" | xargs -I % -n 1 -P 8 git clone -q ssh://$host:$port/% %
fi