https://wikidocs.net/book/1902
https://git-scm.com/book/ko/v2
https://meetup.nhncloud.com/posts/106 git message Convention
https://velog.io/@archivvonjang/Git-Commit-Message-Convention git message Convention 정리
https://tagilog.tistory.com/537 코딩용어 영어
https://www.heropy.dev/p/B74sNE MD파일 작성법
https://yozm.wishket.com/magazine/detail/1796/ pre-commit & post-commit : 일 시간단
https://m.blog.naver.com/leevisual/222290406489 git 명령어 잘 정리되어있는 곳
// 특정 브랜치에서 특정 파일을 가져오는 방법
git checkout 브랜치명 -- 경로/파일
// **두 커밋 사이**의 **변경사항 확인**
git diff 커밋해쉬1 커밋해쉬2
git diff def5678 abc1234
// **특정 커밋의 특정 파일 변경사항 보기**
git show [커밋해시]:[파일경로]
ex)git show abc1234:src/main.java