-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.gitconfig
executable file
·37 lines (37 loc) · 930 Bytes
/
.gitconfig
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
[include]
path = ~/.gitconfig.local
[core]
editor = $EDITOR
excludesfile = ~/.gitignore
ignorecase = false
abbrev = 12
[alias]
l = log --graph --oneline --decorate
ld = log --graph --pretty=format:'%C(yellow)%h%C(bold white red)%d%Creset %s %C(bold green)%cr %Creset%C(white)%an' --abbrev-commit --date=relative
ll = log --stat --decorate --source -p
branches = for-each-ref --sort=-committerdate --format=\"%(color:blue)%(authordate:relative)\t%(color:red)%(authorname)\t%(color:white)%(color:bold)%(refname:short)\" refs/remotes
[color]
ui = auto
[diff]
algorithm = patience
colorMoved = zebra
[push]
default = current
[commit]
verbose = true
# template = ~/.gitmessage
[fetch]
prune = true
[rebase]
autosquash = true
[pager]
branch = false
[user]
name = vineyardbovines
email = [email protected]
[pull]
rebase = false
[init]
defaultBranch = main
[credential]
helper = osxkeychain