blob: 636167b6ea148990c7248d741e5ab924f7f7fa5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# vim: ft=gitconfig
[init]
defaultBranch = main
[user]
email = blake@blkrom.com
name = Blake Romero
[commit]
verbose = true
[alias]
update = add --update
pop = stash pop
amend = commit --amend
unstage = restore --staged
untrack = rm --cached
uncommit = reset --soft HEAD^
[pretty]
list = format:%C(auto)%h %C(magenta)%G? %C(blue)%<(10,trunc)%as %C(green)%<(12,trunc)%aN %C(auto)%s%C(cyan)% gD%d
|