summaryrefslogtreecommitdiff
path: root/gitconfig
blob: 13f29c49cc4fb1dcd9f606e8e5e86a8e07fde4c6 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[alias]
  pr = "!gh pr"
  issue = "!gh issue"
  bug = "!git-bug"
[user]
	email = marc@mccd.space
	name = Marc Coquand
[credential "https://github.com"]
	helper = !gh auth git-credential
[credential "https://gist.github.com"]
	helper = !gh auth git-credential
[credential "smtp://marcc%40fastmail.fr@smtp.fastmail.com%3a465"]
  helper = 
  helper = !pass 'fastmail/git'
[color]
	ui = false
[mergetool]
	layout = LOCAL,MERGED,REMOTE
[sendemail]
    smtpserver = smtp.fastmail.com
    smtpuser = marcc@fastmail.fr
    smtpencryption = ssl
    smtpserverport = 465
[pull]
	rebase = true
[color "diff"]
	meta = blue
	old = red
	new = green
[log]
  date = relative
[format]
  pretty = oneline
	signoff = true
[credential]
	helper = store
[push]
	autoSetupRemote = true
[commit]
	gpgsign = true
  verbose = true
[init]
	defaultBranch = main
[grep]
	lineNumber = true
[help] 
	autocorrect = prompt