-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgit-remote-fix-insecure
executable file
·58 lines (45 loc) · 1.12 KB
/
git-remote-fix-insecure
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
#!/bin/bash
set -euo pipefail
run() {
echo >&2 "+ $*"
"$@"
}
colorecho() {
local fg bold
bold=1
case "$1" in
black|gray|grey) fg=30 ;;
red) fg=31 ;;
green) fg=32 ;;
yellow) fg=33 ;;
blue) fg=34 ;;
magenta|purple|violet) fg=35 ;;
cyan) fg=36 ;;
white) fg=37 ;;
*)
usage
echo >&2 "Unknown color: $1"
exit 1
;;
esac
shift
if [ -t 1 ]; then
echo -ne "\033[$bold;${fg}m"
fi
echo "$@"
if [ -t 1 ]; then
echo -ne "\033[m"
fi
}
for remote in $(run git remote); do
colorecho blue "Remote: $remote in $PWD"
url="$(run git remote get-url "$remote")"
if [[ $url == git://* ]]; then
colorecho yellow "Found insecure git remote"
new_url="${url/git:/https:}"
colorecho yellow "Old URL: $url"
colorecho yellow "New URL: $new_url"
run git remote set-url "$remote" "$new_url"
fi
done
colorecho blue "OK"