-
Notifications
You must be signed in to change notification settings - Fork 107
/
git.sh
53 lines (44 loc) · 1.12 KB
/
git.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
#!/bin/bash
# plugin to set "git" proxy settings for ProxyMan
# privileges has to be set by the process which starts this script
list_proxy() {
echo
echo "${bold}git proxy settings : ${normal}"
echo "http $(git config --global http.proxy)"
echo "https $(git config --global https.proxy)"
}
unset_proxy() {
git config --global --unset http.proxy
git config --global --unset https.proxy
}
set_proxy() {
local stmt=""
if [ "$use_auth" = "y" ]; then
stmt="${username}:${password}@"
fi
# caution: do not use / after stmt
git config --global http.proxy "http://${stmt}${http_host}:${http_port}/"
if [ "$USE_HTTP_PROXY_FOR_HTTPS" = "true" ]; then
git config --global https.proxy "http://${stmt}${https_host}:${https_port}/"
else
git config --global https.proxy "https://${stmt}${https_host}:${https_port}/"
fi
}
which git &> /dev/null
if [ "$?" != 0 ]; then
exit
fi
if [ "$#" = 0 ]; then
exit
fi
what_to_do=$1
case $what_to_do in
set) set_proxy
;;
unset) unset_proxy
;;
list) list_proxy
;;
*)
;;
esac