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