-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
43 lines (43 loc) · 1.04 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
[alias]
co = checkout
st = status
ci = commit
pu = pull --rebase
ps = push
br = branch
l = log --graph --pretty=format:'%an: %s - %Cred%h%Creset %C(yellow)%d%Creset %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
slog = log --pretty=format:'%C(yellow)%h %Cred%ad %Cblue%an%Cgreen%d %Creset%s' --date=short
slognc = log --pretty=format:'%h %ad %an%d %s' --date=short
[color]
diff = auto
status = auto
branch = auto
[core]
editor = nvim
autocrlf = input
excludesfile = ~/.gitignore
[apply]
whitespace = nowarn
[web]
browser = open
[merge]
conflictstyle = diff3
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[includeIf "gitdir:~/dev/"]
path = ~/dev/.gitconfig
[includeIf "gitdir:~/dev/nilcoast/"]
path = ~/dev/nilcoast/.gitconfig
[includeIf "gitdir:~/dev/melt-sounds/"]
path = ~/dev/nilcoast/.gitconfig
[includeIf "gitdir:~/dev/ebenoist/"]
path = ~/dev/ebenoist/.gitconfig
[user]
name = Erik Benoist
email = ebenoist@gmail.com
[pull]
ff = only
[init]
defaultBranch = main