-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sh
81 lines (68 loc) · 2.05 KB
/
config.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
#!/bin/bash
# Author: Eshan Roy <eshan@snigdhaos.org>
# Author URI: https://eshanized.github.io
set -e
# Function to display usage instructions
usage() {
cat <<EOF
Usage: ${0##*/} [--email <email>] [--username <username>] [-h]
Options:
--email <email> Set the GitHub user email.
--username <username> Set the GitHub username.
-h, --help Display this help message.
Description:
This script configures your GitHub user.email and user.name settings globally.
If no arguments are provided, it will prompt for input interactively.
Examples:
${0##*/} --email user@example.com --username "Eshan Roy"
EOF
exit 1
}
# Parse command-line arguments
while [[ "$#" -gt 0 ]]; do
case "$1" in
--email)
EMAIL="$2"
shift 2
;;
--username)
USERNAME="$2"
shift 2
;;
-h|--help)
usage
;;
*)
echo "Unknown argument: $1"
usage
;;
esac
done
# Prompt for email if not provided
if [[ -z "${EMAIL:-}" ]]; then
read -p "Enter your GitHub Email: " EMAIL
fi
# Prompt for username if not provided
if [[ -z "${USERNAME:-}" ]]; then
read -p "Enter your GitHub Username: " USERNAME
fi
# Validate email format
if ! [[ "$EMAIL" =~ ^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$ ]]; then
echo "Error: Invalid email format: $EMAIL"
exit 1
fi
# Validate username (allowing alphanumerics, dashes, underscores, and dots)
if ! [[ "$USERNAME" =~ ^[a-zA-Z0-9._-]+$ ]]; then
echo "Error: Invalid username format: $USERNAME"
exit 1
fi
# Configure GitHub global settings
git config --global user.email "$EMAIL"
git config --global user.name "$USERNAME"
# Display success message
echo -e "\033[1;32mGitHub configuration setup successful!\033[0m"
echo " User Email: $EMAIL"
echo " Username: $USERNAME"
echo -e "\033[1;36mYou can verify this configuration using the following commands:\033[0m"
echo " git config --global user.email"
echo " git config --global user.name"