8 lines
164 B
Bash
Executable file
8 lines
164 B
Bash
Executable file
#!/bin/env sh
|
|
|
|
gitUserConfig() {
|
|
git config --global user.email "git@iedsoftworks.com"
|
|
git config --global user.name "Michel Fedde"
|
|
}
|
|
|
|
addActions gitUserConfig
|