git-set script create

This commit is contained in:
vlnko 2026-01-03 15:54:10 +03:00
parent 26e404e441
commit 3a74fbb974
2 changed files with 11 additions and 0 deletions

View File

@ -8,6 +8,7 @@
- `alacritty-install.sh` Installs alacritty, creates config and installs catpuccin frappe theme - `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 - `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 - `macos-first-install.sh` Installs basic soft I need on a clean machine
- `git-set.sh` Sets git username and email
#### Python #### Python

10
git-set.sh Normal file
View 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"