~/.gitconfig에 박아둔 것들
[alias]
s = status -sb
d = diff
ds = diff --staged
l = log --oneline --graph -20
ll = log --oneline --graph
unstage = reset HEAD --
amend = commit --amend --no-edit
fpush = push --force-with-lease특히 fpush = force-with-lease가 핵심. 그냥 force는 절대 안 씀 (남의 커밋 덮어쓸 위험)