Files
Arch/Scripts/git-account.sh
T
2024-09-08 16:06:15 +02:00

7 lines
182 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"