paste.otavio.lol / gitconfig · 4 days ago·

[user]
	name = Otavio Cordeiro
	email = otaviocc@users.noreply.github.com

[alias]
	aliases = "!f() { git config --global -l | grep alias | sort; }; f"
	st = status
	br = branch
	cm = commit
	co = checkout
	re = restore
	sw = switch
	dif = diff
	pus = push
	pu = push
	pick = cherry-pick
	amend = commit --amend
	authors-list = shortlog -e -s -n
	authors-count = shortlog -s -n
	cob = checkout -b
	nuke = reset --hard
	purge = clean -fd
	revertfile = checkout --
	unstage = reset HEAD --
	uncommit = reset --soft HEAD^

[tig]
	vertical-split = false

[commit]
	gpgsign = false

[gpg]
	program = /opt/homebrew/bin/gpg

[push]
	autoSetupRemote = true