# 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"