10 lines
230 B
Bash
10 lines
230 B
Bash
#!/bin/bash
|
|
|
|
user="vlnko"
|
|
email="laslolnko@gmail.com"
|
|
|
|
git config --global credential.helper store
|
|
git config --global user.name "$user"
|
|
git config --global user.email "$email"
|
|
|
|
echo "Git user set to $user and email set to $email" |