aboutsummaryrefslogtreecommitdiff
path: root/dot-config/git/config
blob: 2bd8695a4573d8cee24cbaa0f0069b8c54ecffcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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^