-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
54 lines (54 loc) · 1.2 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
[user]
name = John Kugelman
email = john@kugelman.name
[color]
status = auto
branch = auto
ui = auto
interactive = auto
[push]
default = simple
useForceIfIncludes = true
[merge]
ff = only
directoryRenames = true
[pull]
ff = only
[alias]
unstage = reset HEAD --
lg = log --graph --abbrev-commit --date=relative --format=format:'%C(bold blue)%aN <%aE>%C(reset), %C(bold green)%ad%C(reset) - %C(auto)%h%d%C(reset)%n%C(bold)%B%-C()%n' --stat
pushf = push --force-with-lease
children = "!bash -c 'c=${1:-HEAD}; set -- $(git rev-list --all --not \"$c\"^@ --children | grep $(git rev-parse \"$c\") ); shift; echo $1' -"
[diff "sqlite3"]
textconv = bash -c 'sqlite3 \"$1\" .dump' --
[pager]
stash =
tag =
branch =
[log]
mailmap = true
[fetch]
prune = true
[core]
pager = diff-so-fancy | less -R
excludesFile = ~/.config/gitignore-global
[diff-so-fancy]
stripLeadingSymbols = false
markEmptyLines = false
[diff]
colorMoved = default
renames = copies
[commit]
verbose = true
cleanup = scissors
[status]
showStash = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[rebase]
autosquash = true
[init]
defaultBranch = main