.gitconfig (1807B)
1 [alias] 2 s = status -s 3 b = branch --sort=-committerdate 4 rv = remote -v 5 co = checkout 6 cb = checkout -B 7 cm = checkout master 8 cane = commit --amend --no-edit 9 ; pomr = pull origin master --rebase --stat 10 pom = pull origin master --stat 11 histi = "--no-pager log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short --max-count=20" 12 histi40 = "--no-pager log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short --max-count=40" 13 ; histi = "log --pretty=format:'%C(yellow)[%ad]%C(reset) %C(green)[%h]%C(reset) | %C(red)%s %C(bold red){{%an}}%C(reset) %C(blue)%d%C(reset)' --graph --date=short --max-count=20" 14 hist = "--no-pager log --pretty=format:'%C(yellow)%h%C(reset) %C(green)%ad%C(reset) | %C(reset)%s %C(bold)[%an]%C(reset) %C(blue)%d%C(reset)' --graph --date=short --max-count=20" 15 hist40 = "--no-pager log --pretty=format:'%C(yellow)%h%C(reset) %C(green)%ad%C(reset) | %C(reset)%s %C(bold)[%an]%C(reset) %C(blue)%d%C(reset)' --graph --date=short --max-count=40" 16 lab = "!lab" 17 hub = "!hub" 18 19 [user] 20 name = Yohanes Bandung Bondowoso 21 email = hi@ybbond.id 22 signingkey = 56DAADB152461C806792DBAB84773B93988681A0 23 24 [filter "lfs"] 25 clean = git-lfs clean -- %f 26 smudge = git-lfs smudge -- %f 27 process = git-lfs filter-process 28 required = true 29 30 [gpg] 31 program = /usr/local/bin/gpg 32 33 [core] 34 excludesfile = /Users/yohanesbandung/.gitignore_global 35 pager = cat 36 ; pager = delta --light 37 38 [commit] 39 template = /Users/yohanesbandung/.stCommitMsg 40 41 [fetch] 42 prune = false 43 44 ; [interactive] 45 ; diffFilter = delta --color-only --light 46 47 ; [delta] 48 ; features = side-by-side line-numbers decorations 49 ; whitespace-error-style = 22 reverse 50 51 ; [delta "decorations"] 52 ; commit-decoration-style = bold yellow box ul 53 ; file-style = bold yellow ul 54 ; file-decoration-style = none