Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. [alias]
  2. ci = commit
  3. co = checkout
  4. st = status
  5. praise = blame
  6. la = diff --cached --name-only
  7. ls = ls-files -m
  8. da = diff --cached
  9. shown = show --name-status
  10. yank = cherry-pick
  11. lg = log --name-status
  12. lf = log --graph --full-history --all --color --pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s"
  13. lr = log -C --summary --decorate
  14. plg = log --color --graph --pretty-format:'%Cred%h%Creset -%C(yellow)%d%Creset %s $Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
  15. out = log @{u}.. --decorate
  16. outall = log --branches --not --remotes --decorate
  17. new = ls-files -o --exclude-standard
  18. gone = ls-files -d
  19.  
  20. [apply]
  21. whitespace = strip
  22.  
  23. [pager]
  24. color = true
  25.  
  26. [status]
  27. color = auto
  28.  
  29. [rerere]
  30. enabled = true
  31.  
  32. [push]
  33. default = tracking
  34.  
  35. [rebase]
  36. stat = true
  37. autosquash = true
  38.  
  39. [color]
  40. ui = auto
  41. diff = auto
  42. status = auto
  43. branch = auto
  44. interactive = true
  45.  
  46. [core]
  47. autocrlf = false
  48. safecrlf = warn
  49.  
  50. [diff]
  51. color = auto
  52. rename = copy
  53. tool = bc
  54. guitool = bc
  55.  
  56. [difftool "bc"]
  57. path = c:/Program Files (x86)/Beyond Compare 4/bcomp.exe
  58. prompt = false
  59.  
  60. [merge]
  61. tool = bc
  62.  
  63. [mergetool "bc"]
  64. path = c:/Program Files (x86)/Beyond Compare 4/bcomp.exe
  65. trustExitCode = true
  66. prompt = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement