forked from henrik/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
executable file
·49 lines (49 loc) · 1.05 KB
/
gitconfig
File metadata and controls
executable file
·49 lines (49 loc) · 1.05 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
[user]
name = Albert
email = albert.ramstedt@gmail.com
[core]
excludesfile = /Users/albert/.gitignore
ignorecase = false
[color]
status = auto
diff = auto
branch = auto
ui = true
[branch "master"]
merge = master
[alias]
who = shortlog -s -n --no-merges
standup = shortlog --since=yesterday
today = shortlog --since=midnight
uncommit = reset --soft HEAD^
unref = reset --soft HEAD@{1}
[github]
user = soma
[push]
default = current
[web]
browser = open
[diff]
tool = diffmerge
[difftool "diffmerge"]
cmd = diffmerge \"$LOCAL\" \"$REMOTE\"
[merge]
tool = diffmerge
[mergetool "diffmerge"]
cmd = "diffmerge --merge --result=\"$MERGED\" \"$LOCAL\" \"$(if test -f \"$BASE\"; then echo \"$BASE\"; else echo \"$LOCAL\"; fi)\" \"$REMOTE\""
trustExitCode = true
[pull]
rebase = true
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = 11
frag = magenta bold
func = 146 bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse