summaryrefslogtreecommitdiff
path: root/dot_config/git/config
blob: 5f7a44b0d9f4dabac79abf19920e1915417181a0 (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[alias]
	aa = add -A
	ap = add -p
	bd = branch -D
	cs = commit --verbose --gpg-sign
	ci = commit --verbose
	co = checkout
	cb = checkout -b
	ch = cherry-pick
	cp = commit --patch
	dc = diff --cached
	hr = reset --hard HEAD
	last = log -1 --stat
	lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %Cblue<%an>%Creset' --abbrev-commit --date=relative --all
	pf = push --force
	st = status
	stat = diff --stat
	root = rev-parse --show-toplevel
[apply]
	whitespace = warn
[color]
	ui = true
[core]
	filemode = false
	trustctime = false
	whitespace = blank-at-eol,space-before-tab,tab-in-indent,tabwidth=4
[credential]
	helper = cache --timeout=3600
[help]
	autocorrect = 1
[init]
	defaultBranch = main
[merge]
	tool = vimdiff
[mergetool]
	keepbackup = false
	keeptemporaries = false
	prompt = false
[pager]
	stat = false
[pull]
	rebase = true
[push]
	default = simple
	autoSetupRemote = true
[rebase]
	autoSquash = true
[sendemail]
	from = code@toast.bunkerlabs.net
	smtpencryption = tls
	smtpserver = smtp.migadu.com
	smtpserverport = 465
	smtpuser = toast@bunkerlabs.net
[status]
	branch = true
	short = true
[user]
	email = code@toast.bunkerlabs.net
	name = Chloe Kudryavtsev

[url "git@github.com:CosmicToast/"]
	insteadOf = "st:"

[url "https://github.com/"]
	insteadOf = "gh:"

[url "https://gitlab.com/"]
	insteadOf = "gl:"

[filter "lfs"]
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true
	clean = git-lfs clean -- %f