]> code.delx.au - dotfiles/blob - .gitconfig
87680ab12ae168caf25c30da7d055aa47ea48666
[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 default = upstream
13 [alias]
14 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
15 ci = commit
16 co = checkout
17 st = status
18 di = diff
19 diw = diff --color-words
20 dic = diff --cached
21 dicw = diff --cached --color-words
22 ff = merge --ff-only
23 ffpull = pull --ff-only