-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
46 lines (41 loc) · 1.14 KB
/
Copy path.gitconfig
File metadata and controls
46 lines (41 loc) · 1.14 KB
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
[push]
default = simple
autoSetupRemote = true
followTags = true
[user]
name = Nicholas Dille
[init]
defaultBranch = main
[tag]
sort = version:refname
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[fetch]
prune = true
pruneTags = true
all = true
[merge]
conflictstyle = zdiff3
[pull]
rebase = true
[checkout]
defaultRemote = origin
[credential]
helper = cache --timeout 21600
helper = oauth
[include]
path = ~/haufe/gitconfig
[includeIf "gitdir:~/private/"]
path = ~/private/gitconfig
[includeIf "hasconfig:remote.*.url:https://github.com/nicholasdille/dotfiles"]
path = ~/private/gitconfig
[includeIf "gitdir:~/.passage/"]
path = ~/private/gitconfig
[credential "https://codeberg.org"]
helper = "!pp git-codeberg"
[alias]
lg = "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit"
lgg = "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"