8 lines
180 B
Bash
8 lines
180 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
sudo pacman -S git
|
||
|
|
||
|
git config --global user.email "ordinarydev@protonmail.com"
|
||
|
git config --global user.name "Ivan Reshetnikov"
|
||
|
git config --global commit.gpgsign true
|