7 lines
159 B
Bash
Executable file
7 lines
159 B
Bash
Executable file
#!/bin/env sh
|
|
|
|
gitUserConfig() {
|
|
git config --global user.email "fedde@eventit.ag"
|
|
git config --global user.name "Michel Fedde"
|
|
}
|
|
addActions gitUserConfig
|