dotfiles/git_setup.sh
2021-11-14 22:47:49 +03:00

8 lines
279 B
Bash

echo "Type in your first and last name (no accent or special characters - e.g. 'ç'): "
read -r full_name
echo "Type in your email address (the one used for your GitHub account): "
read -r email
git config --global user.email "$email"
git config --global user.name "$full_name"