-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` 방향으로만 머지한다 |