stronk7

Untitled

Apr 3rd, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. [user]
  2. name = xxxx
  3. email = xxxx
  4. [color]
  5. diff = auto
  6. status = auto
  7. branch = auto
  8. interactive = auto
  9. grep = auto
  10. ui = true
  11. pager = true
  12. [core]
  13. excludesfile = /Users/stronk7/.gitignore
  14. whitespace = blank-at-eol, cr-at-eol, space-before-tab, tab-in-indent, blank-at-eof
  15. pager = less
  16. [pager]
  17. # Show chars changed with increased intensity and underline.
  18. log = diff-highlight | sed 's/\\x1b\\[7m/\\x1b[1m\\x1b[4m/g' | sed 's/\\x1b\\[27m/\\x1b[24m\\x1b[22m/g' | less
  19. show = diff-highlight | sed 's/\\x1b\\[7m/\\x1b[1m\\x1b[4m/g' | sed 's/\\x1b\\[27m/\\x1b[24m\\x1b[22m/g' | less
  20. diff = diff-highlight | sed 's/\\x1b\\[7m/\\x1b[1m\\x1b[4m/g' | sed 's/\\x1b\\[27m/\\x1b[24m\\x1b[22m/g' | less
  21. [alias]
  22. st = status
  23. di = diff
  24. co = checkout
  25. ci = commit
  26. br = branch
  27. sh = stash
  28. ch = cherry
  29. pk = cherry-pick
  30. cvs = cvsexportcommit -p -u -v
  31. udiff = diff --minimal -C -C HEAD@{upstream}
  32. shifter = !bash -c 'pushd "$(git rev-parse --show-toplevel)" > /dev/null && \
  33. rm -fr $(find . -path "\\*/yui/build" -type d) && \
  34. shifter --walk --recursive --lint config && \
  35. popd > /dev/null'
  36. recess = !bash -c 'pushd "$(git rev-parse --show-toplevel)/theme" > /dev/null && \
  37. recess --compile --compress bootstrapbase/less/moodle.less > bootstrapbase/style/moodle.css && \
  38. recess --compile --compress bootstrapbase/less/editor.less > bootstrapbase/style/editor.css && \
  39. popd > /dev/null'
  40. grunt = "!f() { \
  41. pushd "$(git rev-parse --show-toplevel)" > /dev/null; \
  42. if [[ -z "$@" ]] || [[ "$@" =~ yui ]]; then \
  43. rm -fr $(find -path "\\*/yui/build" -type d); \
  44. fi; \
  45. if [[ -z "$@" ]] || [[ "$@" =~ amd ]]; then \
  46. rm -fr $(find -path "\\*/amd/build" -type d); \
  47. fi; \
  48. if [[ -f "/opt/local/bin/grunt" ]]; then \
  49. /opt/local/bin/grunt "$@"; \
  50. else \
  51. node_modules/.bin/grunt "$@"; \
  52. fi; \
  53. popd > /dev/null; \
  54. }; f"
  55. [github]
  56. user = xxxxx
  57. token = xxxxxxxx
  58. [merge]
  59. renamelimit = 3000
  60. conflictstyle = diff3
  61. tool = opendiff
  62. [push]
  63. default = matching
  64. [credential]
  65. helper = osxkeychain
  66. [http]
  67. postBuffer = 256000000
  68. [am]
  69. threeWay = true
  70. [diff]
  71. algorithm = minimal
Advertisement
Add Comment
Please, Sign In to add comment