-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
77 lines (76 loc) · 2.31 KB
/
gitconfig
File metadata and controls
77 lines (76 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
[user]
name = David
email = davidmassant@gmail.com
[credential]
helper = osxkeychain
[push]
default = current
[log]
date = relative
[alias]
tag = tag -a
st = status -s -b
sl = stash list
ci = commit
co = checkout
br = branch
pb = push -u origin --tags
f = fetch --all
pull = pull --rebase
r = remote -v
b = branch -a
info = remote show origin
wdiff = diff --no-ext-diff --color-words
l = log --stat --format=format:'"%C(yellow)%h %C(cyan)%an %C(blue)(%cn) %C(cyan)%ad%d\n%C(green)%s\n%b%N"'
ll = log --stat --format=format:'"%C(yellow)%h %C(cyan)%an <%ae> %ad%d\n\t%C(blue)%cn <%ce> %ci\n%C(green)%s\n%b%N"'
lm = log --stat --format=format:'"%C(yellow)%h %C(cyan)%an %C(blue)(%cn) %C(cyan)%ad%d\n%C(green)%s\n%b%N"' master..
ahead = log --stat --format=format:'"%C(yellow)%h %C(cyan)%an %C(blue)(%cn) %ad\n%C(green)%s\n%b%N"' origin/master..HEAD
behind = log --stat --format=format:'"%C(yellow)%h %C(cyan)%an %C(blue)(%cn) %ad\n%C(green)%s\n%b%N"' HEAD..origin/master
hist = log --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset (%Cgreen%cr%Creset) %s [%Cblue%an%Creset]' --graph --abbrev-commit --date=relative
prev = checkout @{-1}
heads = for-each-ref --sort=-committerdate refs/heads/ --format='"%(refname:short) %1B[0;36m%(authorname)%1B[m %1B[0;33m%(committerdate)%1B[m"'
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[color "status"]
added = green
changed = yellow
untracked = cyan
[diff]
ignoreSubmodules = untracked
tool = mvimdiff
[difftool]
prompt = false
[difftool "mvimdiff"]
cmd = mvim -d -f $LOCAL $REMOTE
[grep]
extendedRegexp = true
[rebase]
autosquash = true
[branch "master"]
remote = origin
merge = refs/heads/master
[github]
user = dinomite
[blame]
date = short
[core]
quotepath = false
autocrlf = input
excludesfile = /Users/Macarthas/.gitignore_global
[branch]
autosetuprebase = always
[hub]
protocol = https
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true