Files
Arch/Scripts/git-account.sh
T

7 lines
176 B
Bash

# Add username + email to git
echo "Enter your username"
read username
echo "Enter your emailadres"
read email
git config user.name "$username"
git config user.email "$email"