global 설정 파일 위치 : ~/.gitconfig 또는 ~/.config/git/config 맨 아래 아래 내용 붙여넣고 저장하면 끝
[alias]
s = status
a = add
c = commit -m
st = stash
stp = stash pop
std = stash drop
co = checkout
cob = checkout -b
bm = branch -M
d = branch -D
rs = reset --soft HEAD^
ps = push origin
pl = pull origin