9 lines
280 B
Bash
9 lines
280 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"
|