-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgithub_setup.sh
109 lines (62 loc) · 1.84 KB
/
github_setup.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/bin/sh
echo "input your github acc"
read user
dirname="env_backup" #name of github repo
if ! [ -f "/home/$USER/.ssh/id_rsa" ];then
ssh-keygen -t rsa
fi
key=`cat ~/.ssh/id_rsa.pub`
#..................................ssh.........................................................................
echo "using your ssh-key to connection github..."
i="0"
until [ $i != "0" ]
do
temp=`curl -s -u $user https://api.github.com/user/keys -d "{\"title\": \"env ssh key\",\"key\": \"$key\" }" `
if [ `echo $temp | grep Bad -c` -ge "1" ];then
echo " "
echo "worng username or password input again"
echo " "
echo "input your github acc"
read user
i="0"
elif [ `echo $temp | grep Max -c` -ge "1" ];then #github lock acc
echo "too much woring login"
echo "Maximum number of login attempts exceeded. Please try again later"
i="0"
exit 5
else
i="1"
fi
done
#..................................repo............................................................................
echo "create repo..."
echo " "
i="0"
until [ $i != "0" ]
do
temp=`curl -s -u $user https://api.github.com/user/repos -d "{\"name\":\"$dirname\"}" `
if [ `echo $temp | grep Bad -c` -ge "1" ];then
echo " "
echo "worng password input again"
i="0"
elif [ `echo $temp | grep Max -c` -ge "1" ];then #github lock acc
echo "too much woring login"
echo "Maximum number of login attempts exceeded. Please try again later"
i="0"
exit 5
elif [ `echo $temp | grep already -c` -ge "1" ];then
echo "github repo is used. please input your new repo name."
read dirname
i='0'
else
i="1"
fi
done
#......................................................................................................................
ssh-add ~/.ssh/id_rsa
ssh -T git@github.com
git clone git@github.com:$user/$dirname.git $1
cd $1
git config user.name $user
git config user.email $user
echo "done"