-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
31 lines (31 loc) · 821 Bytes
/
.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
[user]
name = Jeremy Hertel
email = [email protected]
signingkey = 0EBB61F9450E29D1
[alias]
st = status
br = branch
ls = ls-files
ch = checkout
g = log --all --color --graph --pretty=format:'%C(auto)%h%C(auto)%d%C(reset) %C(dim green)(%cr)%C(reset) -- %C(white)%s'
graph = log --all --color --graph --pretty=format:'%C(auto)%h%C(auto)%d%C(reset) %C(green)(%cr)%C(reset)%n %C(white)%s %C(bold black)--%an%C(reset) %C(red)%G?%C(reset)%w(0,6,6)%+b'
ds = diff --stat
[color]
diff = auto
status = auto
branch = auto
[push]
default = simple
[core]
editor = nvim
excludesfile = ~/.gitignore_global
[gui]
editor = nvim
[commit]
gpgSign = true
[url "[email protected]:"]
insteadOf = https://github.com/
[pull]
rebase = false
[init]
defaultBranch = master