9 lines
159 B
Bash
9 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
|
|
}
|