-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
58 lines (57 loc) · 1.02 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
[user]
email = johannes.kadak@bolt.eu
name = johannes.kadak
signingkey = B87E6037955C154EFEABE0E6F66ED3823078540B
[push]
default = simple
autoSetupRemote = true
[core]
excludesfile = ~/.gitignore_global
ignoreCase = true
[merge]
tool = opendiff
[diff]
tool = opendiff
[alias]
# Graph all branches
graph = log --all --graph --pretty=oneline --decorate
a = add --all
c = commit
d = diff
dc = diff --cached
dp = diff --patience
f = fetch
fo = fetch origin
g = grep -p
l = log --oneline
ls = ls-files
lsf = "!git ls-files | grep -i"
m = merge
co = checkout
cb = checkout -b
p = push
ra = remote add
s = status
sb = status -s -b
git = "!exec git"
[commit]
gpgsign = true
[credential]
helper = osxkeychain
[gpg]
program = gpg
[pull]
rebase = false
[init]
defaultBranch = master
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[fetch]
prune = true
[url "git@github.com:"]
insteadOf = https://github.com/
[safe]
directory = *