-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitconfig
More file actions
54 lines (54 loc) · 1.08 KB
/
.gitconfig
File metadata and controls
54 lines (54 loc) · 1.08 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
50
51
52
53
54
[user]
name = Michael Graczyk
email = michael@mgraczyk.com
[pull]
rebase = true
[rebase]
autoStash = true
updateRefs = true
[alias]
ws = rebase --whitespace=fix --no-update-refs
so = status -uno
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
amend = commit -a --amend --no-edit
ls-u = diff --name-only --diff-filter=U
[http]
cookiefile = /Users/mgraczyk/.gitcookies
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[advice]
skippedCherryPicks = false
[column]
ui = auto
[branch]
sort = -committerdate
[tag]
sort = version:refname
[init]
defaultBranch = main
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[push]
default = simple
autoSetupRemote = true
followTags = true
[fetch]
prune = true
pruneTags = true
all = false
[help]
autocorrect = prompt
[rerere]
enabled = true
autoupdate = true
[core]
commitGraph = true
[gc]
writeCommitGraph = true