]> code.delx.au - dotfiles/blob - .gitconfig
bash: Added EMAIL environment variable
[dotfiles] / .gitconfig
1 [user]
2 name = James Bunton
3 email = jamesbunton@delx.net.au
4 [color]
5 ui = always
6 [core]
7 pager = less -+F -+X
8 editor = vim
9 [log]
10 decorate = full
11 [push]
12 # Set to tracking instead of upstream for backwards compatibility
13 default = tracking
14 [alias]
15 graphlog = log --graph --pretty=format:'%C(bold black)%h%Creset %C(bold red)%ad %C(bold blue)%s%Creset %C(bold yellow)%d%Creset %C(bold black)<%an>%Creset' --date=short
16 ci = commit
17 co = checkout
18 st = status
19 di = diff
20 diw = diff --color-words
21 dic = diff --cached
22 dicw = diff --cached --color-words
23 ff = merge --ff-only
24 ffpull = pull --ff-only