10 lines
159 B
Bash
10 lines
159 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
describe="Setup git"
|
||
|
scripts="@distro @self"
|
||
|
|
||
|
apply() {
|
||
|
git config --global user.name Raine
|
||
|
git config --global user.email raine@ixvd.net
|
||
|
}
|