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