Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 30th, 2012  |  syntax: None  |  size: 0.51 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # ~/.gitconfig
  2. [branch]
  3. autosetupmerge = true
  4.  
  5. [push]
  6. default = current
  7.  
  8. [core]
  9. excludesfile = .gitignore
  10.  
  11. [color]
  12. diff = auto
  13. branch = auto
  14. status = auto
  15.  
  16. [diff]
  17. renames = true
  18.  
  19. [alias]
  20. m = merge --no-ff
  21. st = status
  22. ai = add -i
  23. ap = add -p
  24. d = diff
  25. r = remote
  26. dc = diff --cached
  27. ci = commit -v
  28. cia = commit -v -a
  29. co = checkout
  30. cp = cherry-pick
  31. l = log
  32. ll = log -p
  33. b = branch
  34. reha = reset --hard
  35. lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative