25 lines
584 B
Bash
Executable file
25 lines
584 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $1 == "Debian" ]]; then
|
|
|
|
echo "$1 git-setup"
|
|
echo "apt-get install git"
|
|
|
|
elif [[ $1 == "Arch" ]]; then
|
|
|
|
echo "$1 git-setup"
|
|
echo "pacman -S git"
|
|
while [[ true ]]; do
|
|
read -p "Git Setup: Enter your full name: " name
|
|
read -p "Git Setup: Enter your email address: " email
|
|
if [[ ! -z $name && ! -z $email ]]; then
|
|
break
|
|
else
|
|
echo "Invalid name or address, Please re-enter"
|
|
fi
|
|
done
|
|
echo "git config --global user.name $name"
|
|
echo "git config --global user.email $email"
|
|
|
|
fi
|