[alias]
        amend = commit --amend --no-edit
	br = branch
	brr = branch -r
	co = checkout
	ls = log --oneline --graph --decorate --all
	st = status
	cm = commit -m
	aa = add --all .
	cam = !git add --all . && git commit --amend --no-edit
	rbs = !git checkout main && git pull && git checkout - && git rebase main
	cop = "!f() { git checkout ${1-main}; git pull; }; f"
	lazy = commit -C HEAD@{1}
[init]
	defaultBranch = main
[pull]
  ff = only
[user]
	name = Tom Hicks
	email = headhunter3@gmail.com
[http]
	lowSpeedLimit = 1000
	lowSpeedTime = 60
	postBuffer = 524288000
