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"