특정 파일의 git log 보기

$ git log -p -- deploy/model-backend/helm/templates/deployments.yaml

커밋 메세지 컨벤션

Empty Commit

$ git commit --allow-empty -m "Empty-Commit"

Branch 삭제하기

// delete branch locally
$ git branch -d localBranchName

// delete branch remotely
$ git push origin --delete remoteBranchName

Revert

$ git checkout [commit ID] -- path/to/file

git log of only merges

$ git log --oneline --decorate --color=auto --merges --first-parent

prune