9 lines
160 B
Bash
9 lines
160 B
Bash
#!/bin/sh
|
|
|
|
describe="Setup git"
|
|
scripts="@distro @self"
|
|
|
|
apply() {
|
|
git config --global user.name Strix
|
|
git config --global user.email strix@saluco.nl
|
|
}
|