5 lines
241 B
Bash
Executable file
5 lines
241 B
Bash
Executable file
#!/bin/sh
|
|
git config --global user.email "technik@rdl.de"
|
|
git config --global user.name "rdl technix"
|
|
git config --global credential.helper cache
|
|
git config --global alias.lola "log --graph --decorate --pretty=oneline --abbrev-commit --all"
|