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