-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
48 lines (48 loc) · 926 Bytes
/
Copy path.gitconfig
File metadata and controls
48 lines (48 loc) · 926 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
40
41
42
43
44
45
46
47
48
[alias]
lg = log --color --graph --pretty=format:'%C(magenta)%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[commit]
gpgsign = true
[core]
excludesfile = ~/.gitignore
editor = nano
[fetch]
prune = true
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[gitflow "prefix"]
feature = feature/
bugfix = bugfix/
release = release/
hotfix = hotfix/
support = support/
versiontag = v
[gpg]
format = ssh
[user]
signingkey = ~/.ssh/id_ed25519.pub
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[push]
autoSetupRemote = true
gpgSign = if-asked
[tag]
gpgSign = true
[gitflow "branch"]
master = main
develop = main
[blame]
ignoreRevsFile = :(optional).git-blame-ignore-revs
[pull]
ff = only
[format]
signOff = true
[diff]
algorithm = histogram