CI & CD/Git (5) 썸네일형 리스트형 [Git] Git Commit Message Convention (.gitmessage) 좋은 커밋 메시지는 동료 개발자 또는 미래의 자신에게 변경사항을 전달하는 데 도움이 될 수 있다. 1. .gitmessage 파일 생성 2. .gitmessage 파일 내 템플릿 작성 ########## Title ########## : title ############################ - content1 - content2 ########## Footer ########## # Resolves: 해결된 이슈 # Ref: 참고할 이슈 ############################# # ----- Type List ----- # feat : new feature # fix : bug fix # refactor : refactoring production code # style : form.. [Git] 특정 branch 만 git clone 하기 git clone -b {branch_name} --single-branch {저장소 URL} [Git] 이전 커밋으로 로그 되돌리기 git reset --hard CommitId git push -f origin master [Git] 최근 commit으로 전체 로컬 파일 덮어쓰기 가장 최근 항목을 가져오는 경우 git fetch --all git reset --hard origin/ [Git] branch 생성 및 커밋하기 $ git branch $ git checkout git add . git commit -m "git commit" $ git push origin 이전 1 다음