dotfiles/.gitconfig

40 lines
695 B
INI
Raw Normal View History

[init]
defaultBranch = trunk
2021-10-27 17:33:07 -07:00
2021-08-07 21:24:26 -07:00
[credential]
helper = store
2021-10-27 17:33:07 -07:00
[pull]
2021-10-12 22:19:07 -07:00
rebase = false
2021-10-27 17:33:07 -07:00
2021-08-07 21:24:26 -07:00
[user]
email = blakelysnorth@gmail.com
name = PowerUser64
2021-10-27 17:33:07 -07:00
[safe]
directory = /storage/emulated/0/docs
2021-08-07 21:24:26 -07:00
[alias]
a = add
c = commit
br = branch
2021-10-24 11:43:22 -07:00
ca = commit -a
caam = commit -a --amend
cam = commit --amend
caps = !git commit -a && git push
ch = checkout
2021-10-27 17:33:07 -07:00
d = diff
2021-12-31 23:17:41 -08:00
lg = log
2022-04-25 14:02:50 -07:00
ok = pull
pl = pull
ps = push
2022-01-06 21:45:36 -08:00
re = restore
rem = remote
s = status
st = status
sub = submodule
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
2021-08-07 21:24:26 -07:00
2021-10-12 22:19:07 -07:00
# vim:noet