git-set script create
This commit is contained in:
parent
26e404e441
commit
3a74fbb974
@ -8,6 +8,7 @@
|
||||
- `alacritty-install.sh` Installs alacritty, creates config and installs catpuccin frappe theme
|
||||
- `check-ip.sh` Checks if the public IP address linked to the domain name
|
||||
- `macos-first-install.sh` Installs basic soft I need on a clean machine
|
||||
- `git-set.sh` Sets git username and email
|
||||
|
||||
#### Python
|
||||
|
||||
|
||||
10
git-set.sh
Normal file
10
git-set.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/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"
|
||||
Loading…
Reference in New Issue
Block a user