dotfiles/.gitconfig
2023-07-10 23:40:28 -07:00

55 lines
1,000 B
INI

[init]
defaultBranch = trunk
[credential]
helper = store
[pull]
rebase = false
[user]
email = blake@blakenorth.net
name = PowerUser64
[safe]
directory = /storage/emulated/0/docs
[alias]
a = add
br = branch
c = commit
ca = commit -a
caam = commit -a --amend
cam = commit --amend
caps = !git commit -a && git push
ch = checkout
d = diff
f = fetch
lg = log
ok = pull
pl = pull
ps = push
psf = push -f
rem = remote
rest = restore
s = status
st = status
sub = submodule
sw = switch
t = tree
tree = 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
[sendemail]
smtpserver = mail.blakenorth.net
smtpuser = blake@blakenorth.net
smtpencryption = ssl
smtpserverport = 465
confirm = auto
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
# vim:noet