From 14fe002d314b68f8ee9d6f7b4b11d3f2bef516e4 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Sat, 23 Mar 2013 14:49:47 +0100 Subject: [PATCH] git --- .gitconfig | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..5468bb5 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,41 @@ +[user] + name = Rodolphe Breard + email = rodolphe@what.tf + +[core] + editor = emacs + +[push] + default = simple + +[alias] + co = checkout + df = diff + br = branch + ci = commit + st = status + unstage = reset HEAD -- + last = log -1 HEAD + undo = reset --soft HEAD^ + amend = commit --amend + +[color] + branch = auto + diff = auto + status = auto + +[color "branch"] + current = yellow reverse + local = yellow + remote = green + +[color "diff"] + meta = yellow bold + frag = magenta bold + old = red bold + new = green bold + +[color "status"] + added = yellow + changed = green + untracked = cyan