-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
77 lines (58 loc) · 1.21 KB
/
.gitconfig
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
[user]
name = Benjamin Kudria
email = ben@kudria.net
[github]
user = bkudria
[core]
editor = emacsclient -q
pager = less
whitespace = trailing-space,space-before-tab,cr-at-eol
excludesfile = /Users/bkudria/.gitignore_global
[push]
default = upstream
[clean]
requireForce = false
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = auto
pager = false
[diff]
mnemonicprefix = true
algorithm = histogram
compactionHeuristic = true
[log]
date = relative
[alias]
discard = checkout HEAD --
ls = ls-files
top = !eval cd "$(pwd)/$(git rev-parse --show-cdup)" && pwd
pr = pull-request
code-changes = "!git log --format=format: --name-only | egrep -v '^$' | sort | uniq -c | sort -rg | head -10"
cc = "!git code-changes"
[help]
autocorrect = 1
[git-up "bundler"]
check = true
[include]
path = ~/.gitconfigs/chime.gitconfig
[magit]
hideCampaign = true
[magithub]
online = false
[magithub "status"]
includeStatusHeader = false
includePullRequestsSection = false
includeIssuesSection = false
[credential]
helper = osxkeychain
[init]
defaultBranch = main
[gpg]
program = /usr/local/MacGPG2/bin/gpg2
[pull]
rebase = true
[url "git@github.com:"]
insteadOf = https://github.com/