Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. # vim: set shiftwidth=4 noexpandtab:
  2. [user]
  3. name = Theodore Robert Campbell Jr
  4. email = trcjr@stupidfoot.com
  5. [color]
  6. ui = auto
  7. branch = auto
  8. diff = auto
  9. status = auto
  10. [color "branch"]
  11. current = yellow reverse
  12. local = yellow
  13. remote = green
  14. [color "diff"]
  15. meta = yellow bold
  16. frag = magenta bold
  17. old = red bold
  18. new = green bold
  19. whitespace = red reverse
  20. [color "status"]
  21. added = yellow
  22. changed = green
  23. untracked = cyan
  24. [core]
  25. whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
  26. [alias]
  27. #add-modified = "!f() { git diff --name-status -r | sed 's/^M\\s\\(.*\\)/\"\\1\"/'; }; echo `f` | xargs -n 1 git add"
  28. add-modified = "!f() { git diff --name-only -r; }; echo `f` | xargs -n 1 git add"
  29. br = branch
  30. changes = diff --name-status -r
  31. ci = commit
  32. co = checkout
  33. df = diff
  34. diff-staged = diff --cached
  35. diffstat = diff --stat -r
  36. diverges = !sh -c 'git rev-list --boundary $1...$2 | grep ^- | cut -c2-'
  37. dump = cat-file -p
  38. l=log --pretty=format:'%Cred%h%Creset -%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
  39. lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
  40. #lgg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %Cblue[%Creset%cn%Cblue]%Creset %f %Cgreen(%cr) %Creset' --abbrev-commit --date=relative
  41. lgg = log --graph --pretty=format:'%C(red)%h %C(magenta)-%C(yellow)%d%C(reset) %s %C(blue)[%C(reset)%aN%C(blue)] %C(green)(%cr)%Creset' --abbrev-commit --date=short
  42. lgg1 = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %f %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
  43. lgga = log --graph --branches --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %Cblue[%Creset%cn%Cblue]%Creset %f %Cgreen(%cr) %Creset' --abbrev-commit --date=relative
  44. purr = pull --rebase
  45. ready = rebase -i @{u}
  46. shot-web = help
  47. st = status
  48. standup = "!git log --since yesterday --author `git config user.email` --pretty=short"
  49. type = cat-file -t
  50. unadd = update-index --force-remove
  51. unstage = reset
  52. [branch]
  53. autosetupmerge = true
  54. [merge]
  55. verbosity = 5
  56. [cola]
  57. fontdiff = DejaVu Sans Mono,8,-1,5,50,0,0,0,0,0
  58. tabwidth = 4
  59. [diff]
  60. tool = gvimdiff
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement