Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [user]
- name = xxxx
- email = xxxx
- [color]
- diff = auto
- status = auto
- branch = auto
- interactive = auto
- grep = auto
- ui = true
- pager = true
- [core]
- excludesfile = /Users/stronk7/.gitignore
- whitespace = blank-at-eol, cr-at-eol, space-before-tab, tab-in-indent, blank-at-eof
- pager = less
- [pager]
- # Show chars changed with increased intensity and underline.
- log = diff-highlight | sed 's/\\x1b\\[7m/\\x1b[1m\\x1b[4m/g' | sed 's/\\x1b\\[27m/\\x1b[24m\\x1b[22m/g' | less
- show = diff-highlight | sed 's/\\x1b\\[7m/\\x1b[1m\\x1b[4m/g' | sed 's/\\x1b\\[27m/\\x1b[24m\\x1b[22m/g' | less
- diff = diff-highlight | sed 's/\\x1b\\[7m/\\x1b[1m\\x1b[4m/g' | sed 's/\\x1b\\[27m/\\x1b[24m\\x1b[22m/g' | less
- [alias]
- st = status
- di = diff
- co = checkout
- ci = commit
- br = branch
- sh = stash
- ch = cherry
- pk = cherry-pick
- cvs = cvsexportcommit -p -u -v
- udiff = diff --minimal -C -C HEAD@{upstream}
- shifter = !bash -c 'pushd "$(git rev-parse --show-toplevel)" > /dev/null && \
- rm -fr $(find . -path "\\*/yui/build" -type d) && \
- shifter --walk --recursive --lint config && \
- popd > /dev/null'
- recess = !bash -c 'pushd "$(git rev-parse --show-toplevel)/theme" > /dev/null && \
- recess --compile --compress bootstrapbase/less/moodle.less > bootstrapbase/style/moodle.css && \
- recess --compile --compress bootstrapbase/less/editor.less > bootstrapbase/style/editor.css && \
- popd > /dev/null'
- grunt = "!f() { \
- pushd "$(git rev-parse --show-toplevel)" > /dev/null; \
- if [[ -z "$@" ]] || [[ "$@" =~ yui ]]; then \
- rm -fr $(find -path "\\*/yui/build" -type d); \
- fi; \
- if [[ -z "$@" ]] || [[ "$@" =~ amd ]]; then \
- rm -fr $(find -path "\\*/amd/build" -type d); \
- fi; \
- if [[ -f "/opt/local/bin/grunt" ]]; then \
- /opt/local/bin/grunt "$@"; \
- else \
- node_modules/.bin/grunt "$@"; \
- fi; \
- popd > /dev/null; \
- }; f"
- [github]
- user = xxxxx
- token = xxxxxxxx
- [merge]
- renamelimit = 3000
- conflictstyle = diff3
- tool = opendiff
- [push]
- default = matching
- [credential]
- helper = osxkeychain
- [http]
- postBuffer = 256000000
- [am]
- threeWay = true
- [diff]
- algorithm = minimal
Advertisement
Add Comment
Please, Sign In to add comment