Guest User

Untitled

a guest
May 16th, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. [user]
  2. name = Alejandro Tapia
  3. [color]
  4. ui = auto
  5. [color "branch"]
  6. current = yellow reverse
  7. local = yellow
  8. remote = green
  9. [color "diff"]
  10. meta = yellow bold
  11. frag = magenta bold
  12. old = red bold
  13. new = green bold
  14. [color "status"]
  15. added = green
  16. changed = red
  17. untracked = yellow
  18. [core]
  19. editor = vim
  20. excludesfile = /Users/alejandrotapia/.gitignore_global
  21. [push]
  22. default = simple
  23. [diff]
  24. tool = diffmerge
  25. [difftool "diffmerge"]
  26. cmd = diffmerge \"$LOCAL\" \"$REMOTE\"
  27. [merge]
  28. tool = diffmerge
  29. [mergetool "diffmerge"]
  30. cmd = "diffmerge --merge --result=\"$MERGED\" \"$LOCAL\" \"$(if test -f \"$BASE\"; then echo \"$BASE\"; else echo \"$LOCAL\"; fi)\" \"$REMOTE\""
  31. trustExitCode = true
  32. [alias]
  33. assume = update-index --assume-unchanged
  34. unassume = update-index --no-assume-unchanged
  35. assumed = "!git ls-files -v | grep ^h | cut -c 3-"
  36. b = branch
  37. a = add
  38. s = status
  39. f = fetch
  40. co = checkout
  41. cob = checkout -b
  42. ci = commit --verbose
  43. cia = commit -a --verbose
  44. cim = commit -m
  45. ciam = commit -a -m
  46. pr = pull --rebase
  47. pl = pull
  48. ps = push
  49. cp = cherry-pick
  50. rst = reset
  51. ll = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
  52. [filter "lfs"]
  53. clean = git-lfs clean %f
  54. smudge = git-lfs smudge %f
  55. required = true
  56.  
  57.  
  58. [difftool "sourcetree"]
  59. cmd = opendiff \"$LOCAL\" \"$REMOTE\"
  60. path =
  61. [mergetool "sourcetree"]
  62. cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
  63. trustExitCode = true
Add Comment
Please, Sign In to add comment