Advertisement
troglobit

My ~/.gitconfig

Jun 26th, 2012
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [user]
  2.     name = Joachim Nilsson
  3.     email = troglobit@gmail.com
  4. [color]
  5.     diff = auto
  6.     status = auto
  7.     branch = auto
  8. [alias]
  9.     audit    = log -p -m --first-parent
  10.     glog     = log --decorate --stat
  11.     undo     = reset --hard
  12.     changes  = diff --name-status -r
  13.     diffstat = diff --stat -r
  14.     # git summary 4.8.0-rc2 4.8.0-rc3
  15.     summary  = diff --shortstat
  16.     graphviz = "!f() { echo 'digraph git {' ; git log --pretty='format:  %h -> { %p }' \"$@\" | sed 's/[0-9a-f][0-9a-f]*/\"&\"/g' ; echo '}'; }; f"
  17.     st = status -suno
  18.     ci = commit
  19.     br = branch
  20.     co = checkout
  21.     df = diff
  22.     lg = log -p
  23.     who = shortlog -s --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement