Git Convention
Git Commit Convention
<aside>
💡 git add
대신에 git add -p
사용하기!
</aside>
- 무분별한
git add *
명령어를 자제한다.
git add -p
옵션을 사용할 경우 파일을 hunk단위로 확인하면서 add할 수 있다.
- hunk단위로 add를 하게 되면, 파일의 일부분도 add할 수 있기 때문에 효율적이다.
- 또한, 본인의 수정사항을 다시 한 번 확인할 수 있는 효과도 얻을 수 있다.
Git Commit Message Convention
<aside>
💡 기본적인 컨벤션은 Udacity Git Commit Message Style Guide를 따른다.
</aside>
- feat: A new feature
- fix: A bug fix
- docs: Changes to documentation
- style: Formatting, missing semi colons, etc; no code change
- refactor: Refactoring production code
- test: Adding tests, refactoring test; no production code change
- chore: Updating build tasks, package manager configs, etc; no production code change