-
Notifications
You must be signed in to change notification settings - Fork 36
/
realname-and-email.sh
67 lines (58 loc) · 1.28 KB
/
realname-and-email.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
#!/usr/bin/env bash
# Stop on error.
set -e
# Get some information from the user.
# 1. Real name.
REALNAME=$($GIT config --global --default '' --get user.name)
echo "${YELLOW}What is the real name you use on GitHub?"
read -rp "Real name (press Enter to accept '$REALNAME')${RESET}: " input
if [[ -z $REALNAME ]]
then
if [[ -z $input ]]
then
echo "${RED}No name given!${RESET}"
exit 1
else
REALNAME=$input
echo "Using given input: $REALNAME"
fi
else
if [[ -z $input ]]
then
echo "Using given user.name: $REALNAME"
else
REALNAME=$input
echo "Using given input: $REALNAME"
fi
fi
REALNAME_LEN=${#REALNAME}
if [[ $REALNAME_LEN -lt 5 ]]
then
echo "${RED}Real name has $REALNAME_LEN < 5 characters!${RESET}"
exit 2
fi
echo
# 2. Email address.
EMAIL=$($GIT config --global --default '' --get user.email)
echo "${YELLOW}What is an email address you have registered with GitHub?"
read -rp "Email (press Enter to accept '$EMAIL'): ${RESET}" input
if [[ -z $EMAIL ]]
then
if [[ -z $input ]]
then
echo "${RED}No email given!${RESET}"
exit 3
else
EMAIL=$input
echo "Using given input: $EMAIL"
fi
else
if [[ -z $input ]]
then
echo "Using given user.email: $EMAIL"
else
EMAIL=$input
echo "Using given input: $EMAIL"
fi
fi
echo