Skip to content

Commit

Permalink
git commit rule 명시
Browse files Browse the repository at this point in the history
  • Loading branch information
mskim9967 committed Nov 5, 2023
1 parent 17db5d9 commit 2e27344
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Git Rule

### 커밋 룰
- 선 이슈 생성 & 후 개발

ex) `git commit -m "feat: ~~~"`
- `feat` 기능 구현
- `refactor` 리팩토링
- `fix` 버그 수정
- `test` 테스트코드
- `config` 빌드, 패키지, 환경변수 등의 수정
- `comment` 주석 추가 및 변경
- `docs` 문서 수정
- `rename` 파일/폴더명 수정
- `remove` 파일/폴더 삭제
- `etc` → 그 외

### 브랜치 룰
- `[이름 이니셜]/[수행한 작업]`

ex) `kms/select-join-fix`

### Merge 룰
- `개인브랜치 → (PR) → develop`, `develop → main` 방향으로만 머지한다

0 comments on commit 2e27344

Please sign in to comment.