-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
39 lines (39 loc) · 993 Bytes
/
.gitconfig
File metadata and controls
39 lines (39 loc) · 993 Bytes
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
[user]
name = Bart Skowron
email = bart@bxsx.dev
signingkey = ~/.ssh/id_ed25519.pub
[commit]
gpgsign = true
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = ~/.ssh/allowed_signers
[fetch]
prune = true
[core]
autocrlf = input
editor = vim
#pager = less -S# E:--quit-at-eof S:--chop-long-lines
pager = bat --plain
excludesfile = ~/.gitignore
[alias]
tlog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[pager]
#blame = less -S # E:--quit-at-eof S:--chop-long-lines
blame = bat --plain
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[rebase]
autoStash = true
[init]
defaultBranch = main
# Must be commented out to allow it to be overwritten in `.gitconfig-external`
[url "git@github.com:"]
insteadOf = https://github.com/
[url "git@gitlab.com:"]
insteadOf = https://gitlab.com/
[include]
path = .gitconfig-external