From 5bad9d0a0e417a6a715d89b37ea973e0fdcc946e Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Sun, 3 Apr 2011 12:15:44 +0200 Subject: [PATCH] my minimal .gitconfig file --- .gitconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..2748293 --- /dev/null +++ b/.gitconfig @@ -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