· 8 years ago · Dec 15, 2016, 11:52 PM
1[user]
2 name = ryanschuhler
3 email = ryan.schuhler@liferay.com
4[credential]
5 helper = cache --timeout=7200
6[alias]
7 co = checkout
8 cb = checkout -b
9 br = branch
10 st = status
11 po = push origin
12 u = !git fetch upstream && git pull --rebase upstream $1
13 ux = !git co ee-6.2.x && git fetch upstream ee-6.2.x && git pull --rebase upstream ee-6.2.x && git push origin ee-6.2.x
14 ux1 = !git co ee-6.1.x && git fetch upstream ee-6.1.x && git pull --rebase upstream ee-6.1.x && git push origin ee-6.1.x
15 btex = !git branch --track $1 upstream/ee-6.1.x && git checkout
16 pru = pull --rebase upstream
17 fu = fetch upstream
18 cos = git checkout $1 && git status
19 lg = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative
20 sfm = "!f() { git diff --stat --name-only ee-6.2.x.. | grep -E '.(jsp.?|vm|ftl|tag|tpl|tmpl|js|soy|hbs|(s)?css)$' | tr \"\\n\" \"\\0\" | xargs -0 -J{} check_sf {} $@; }; f"
21
22[github]
23 user = ryanschuhler
24 oauth-token = xxxxxxxxxx
25[core]
26 excludesfile = /Users/ryan/.gitignore_global
27 autocrlf = input
28[difftool "sourcetree"]
29 cmd = opendiff \"$LOCAL\" \"$REMOTE\"
30 path =
31[mergetool "sourcetree"]
32 cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
33 trustExitCode = true
34[filter "lfs"]
35 clean = git-lfs clean %f
36 smudge = git-lfs smudge %f
37 required = true