aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/common/.gitconfig
blob: 534e00fea1de2e2755c47837c8af1f9d45c1a3be (plain)
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
[user]
	email = c@cjennings.net
	name = Craig Jennings
[includeIf "gitdir:~/projects/work/deepsat/code/"]
	path = ~/.gitconfig-deepsat
[init]
	defaultBranch = main
[pull]
	rebase = true 
[fetch]
	prune = true
[merge]
	tool = meld
[core]
	editor = emacs
[safe]
	directory = /home/cjennings/.dotfiles
[help]
	autocorrect = 1
[github]
	user = cjennings
[credential "https://deepsat.ghe.com"]
	helper = 
	helper = !/usr/bin/gh auth git-credential
[credential "https://gist.deepsat.ghe.com"]
	helper = 
	helper = !/usr/bin/gh auth git-credential
[filter "lfs"]
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true