-
Notifications
You must be signed in to change notification settings - Fork 7
ruleGit
JunBae edited this page Nov 29, 2019
·
1 revision
- 코드 스타일
- API : Layered Architecture 로 작성한다.
- Client : CRA를 따른다.
- 깃브랜치를 어떻게 할지
- master ( day4 18시 30분에 merge )
- hotfix ( Debug 단계에서 발생하는 오류 해결 )
- release ( 정오에 일괄처리 )
- develop ( feature 리뷰 후 push / merge )
- feature ( feature/기능번호(분류-기능-프론트/백) )
- 예) feature/2-1-1
- 커밋
- 태그
- Feature ( 큰 )
- Implement ( 중간 )
- Add ( lib, 코드 추가 )
- Remove
- Fix
- Update ( Refactor, Simplify, Revise, Improve )
- Move
- Rename
- Make ( 작은 )
- Correct // 문법오류, 오탈자 변경
- 콜론(:)은 쓰지 않는다.
- Feature A for B
- 커밋단위는 최소로 하되 크기에 대해서는 각자의 규칙을 따른다.
- 태그
- 참고
- Git remote 설정
- upstream 주소 설정
git remote add upstream https://github.com/connect-foundation/2019-11.git
- upstream push 명령 막기
git remote set-url --push upstream no_push
부스트캠프 맴버십 - 그룹프로젝트 (서준배, 최성찬, 홍승표, 황선준)