mirror of
https://github.com/adulau/dotfiles.git
synced 2024-12-22 08:46:01 +00:00
my minimal .gitconfig file
This commit is contained in:
parent
ebfeb2aee8
commit
5bad9d0a0e
1 changed files with 17 additions and 0 deletions
17
.gitconfig
Normal file
17
.gitconfig
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
[core]
|
||||||
|
editor = vim
|
||||||
|
ignorecase = true
|
||||||
|
[user]
|
||||||
|
name = Alexandre Dulaunoy
|
||||||
|
email = a@foo.be
|
||||||
|
signingkey = 44E6CBCD
|
||||||
|
|
||||||
|
[color]
|
||||||
|
diff = auto
|
||||||
|
status = auto
|
||||||
|
branch = auto
|
||||||
|
|
||||||
|
[alias]
|
||||||
|
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
|
||||||
|
graphviz = "!f() { echo 'digraph git {' ; git log --pretty='format: %h -> { %p }' \"$@\" | sed 's/[0-9a-f][0-9a-f]*/\"&\"/g' ; echo '}'; }; f"
|
||||||
|
r = remote -v show
|
Loading…
Reference in a new issue