Added wsl gitconfig

main
Michael Mandl 2019-07-23 13:13:10 +02:00 committed by changeme
parent d856150ad5
commit 956a357a35
2 changed files with 42 additions and 0 deletions

38
git/gitconfig Normal file
View File

@ -0,0 +1,38 @@
[user]
email = changeme
name = changeme
[push]
default = simple
[core]
editor = vim
pager = less -x1,5
whitespace = cr-at-eol
[rebase]
autostash = true
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = 64
whitespace = red reverse
[mergetool]
keepBackup = false
[diff]
tool = vimdiff
[gitflow]
multi-hotfix = true
[gitflow "branch"]
master = master
develop = develop
[gitflow "prefix"]
feature = feature/
bugfix = bugfix/
release = release/
hotfix = hotfix/
support = support/
versiontag =
[log]
date = relative
[format]
pretty = format:%C(yellow)%h %Cblue%>(12)%ad %Cgreen%<(7)%aN%Cred%d %Creset%s

4
git/install.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env sh
ln -svrf gitconfig ~/.gitconfig