[git] Add amend and edit aliases; set some sendemail, LFS, and pull settings

This commit is contained in:
Eryn Wells 2022-01-22 10:46:45 -08:00 committed by Eryn Wells
parent 52d70f77b1
commit 55dcb592d9

View file

@ -8,12 +8,16 @@
[color]
ui = auto
[alias]
amend = commit --amend --no-edit
edit = commit --amend --only
# Commits
c = commit
cm = commit -m
ca = commit -a
cam = commit -am
# Amended commits
ce = commit --amend --only
cn = commit --amend
cna = commit --amend -a
cnam = commit --amend -am
@ -76,3 +80,12 @@
default = simple
[rebase]
autoStash = true
[sendemail]
transferEncoding = base64
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[pull]
rebase = true