dotfiles/.gitconfig

25 lines
526 B
INI
Raw Normal View History

[init]
defaultBranch = trunk
2021-08-07 21:24:26 -07:00
[credential]
helper = store
[pull]
2021-10-12 22:19:07 -07:00
rebase = false
2021-08-07 21:24:26 -07:00
[user]
email = blakelysnorth@gmail.com
name = PowerUser64
[alias]
2021-10-16 18:28:32 -07:00
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-10-24 11:43:22 -07:00
lg = tree
2021-10-16 18:28:32 -07:00
sub = submodule
2021-10-24 11:43:22 -07:00
s = status
2021-10-26 02:56:13 -07:00
p = pull
pu = push
a = add
c = commit
2021-10-24 11:43:22 -07:00
ca = commit -a
cam = commit --amend
caam = commit -a --amend
dh = diff HEAD
2021-08-07 21:24:26 -07:00
2021-10-12 22:19:07 -07:00
# vim:noet