12 lines
226 B
Bash
Executable File
12 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
. "std.sh"
|
|
program_begin git
|
|
|
|
pacinstall git
|
|
git config --global init.defaultBranch main
|
|
git config --global user.email "robaertschi@proton.me"
|
|
git config --global user.name "Robin Bärtschi"
|
|
|
|
program_end
|