Advertisement
lucaswiman

Untitled

Jul 11th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. [alias]
  2. ff = pull --ff-only
  3. staged = diff --cached
  4. [diff]
  5. renames = copy
  6. [color]
  7. ui = auto
  8. diff = auto
  9. status = auto
  10. branch = auto
  11. interactive = auto
  12. ui = true
  13. pager = true
  14.  
  15. [color "branch"]
  16. current = yellow reverse
  17. local = yellow
  18. remote = green
  19.  
  20. [color "diff"]
  21. meta = yellow bold
  22. frag = magenta bold
  23. old = red bold
  24. new = green bold
  25.  
  26. [color "status"]
  27. added = yellow
  28. changed = green
  29. untracked = cyan
  30. [alias]
  31. staged = diff --cached
  32. unstage = reset HEAD
  33. undo-commit = reset --soft HEAD^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement