Guest User

Untitled

a guest
Nov 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. [color]
  2. branch = auto
  3. diff = auto
  4. status = auto
  5. interactive = auto
  6.  
  7. [color "branch"]
  8. current = yellow reverse
  9. local = yellow
  10. remote = green
  11.  
  12. [color "diff"]
  13. meta = yellow bold
  14. frag = magenta bold
  15. old = red bold
  16. new = green bold
  17.  
  18. [color "status"]
  19. added = yellow
  20. changed = green
  21. untracked = cyan
  22.  
  23. [user]
  24. name = Mike Flynn
  25. email = mike.flynn@answers.com
  26. [push]
  27. default = matching
  28.  
  29. [alias]
  30. hash = "rev-parse HEAD"
  31. pull = "!sh -c 'git pull --rebase'"
  32. deploy = "!sh -c 'cd $(git rev-parse --show-toplevel); echo \"# $(basename "$PWD") (BRANCH: $(br=`git symbolic-ref HEAD`; echo ${br#refs/heads/}))\ncd '$(pwd)' \ngitswitch '$(git rev-parse HEAD)';\"' | pbcopy; echo Deploy instructions copied."
  33. co = !sh -c 'git fetch && git checkout $0'
  34. refresh = "!sh -c 'git-refresh'"
  35. opush = "!sh -c 'git-opush'"
  36. make = !sh -c 'git checkout master && git pull --rebase && git checkout -b $0'
  37. lg = log --decorate
  38. blog = "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"
  39. [difftool]
  40. prompt = false
  41. [diff]
  42. tool = =
Add Comment
Please, Sign In to add comment