File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# 2024 캡스톤디자인 - 의지박약 어플 개발 [ 백엔드]
22
3- # 1. 팀원 👨🏻💻
3+ # 1. TEAM 👨🏻💻
44이제용 / 이영웅 / 옥정빈 / 김우성
55---
6- # 2. 규칙
6+ # 2. RULE
77
8- ### 커밋 규칙!
8+ ### COMMIT
99
10- - ** feat** : 새로운 기능 추가
11- - ** fix** : 버그 수정
12- - ** docs** : 문서 수정
13- - ** style** : 코드 포맷팅, 세미콜론 누락, 코드 변경이 없는 경우
14- - ** refactor** : 코드 리팩토링
15- - ** test** : 테스트 코드, 리팩토링 테스트 코드 추가
16- - ** chore** : 빌드 업무 수정, 패키지 매니저 수정
10+ - ** [ feat] ** : 새로운 기능 추가
11+ - ** [ fix] ** : 버그 수정
12+ - ** [ docs] ** : 문서 수정
13+ - ** [ refactor] ** : 코드 리팩토링
14+ - ** [ test] ** : 테스트 코드, 리팩토링 테스트 코드 추가
1715
18- - 예시 : {feat} 로그인 기능 추가
1916
20- ### branch 규칙
21-
22- 각자의 영어 이름을 딴 branch 명을 생성하여 사용.
23-
24- 예시:
25- - git checkout -b <브랜치명>
26- - git checkout -b jeyong
27-
28- ### merge 규칙
29-
30- rebase and merge
31- ```
32- # main 브랜치에서
33- git fetch origin main
34- git pull
35- git checkout {내 브랜치}
36- git rebase main
37- # -> conflict 해결
38- git push origin {내 브랜치}
39- # -> PR 작성
40- ```
You can’t perform that action at this time.
0 commit comments