You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
브랜치 규칙
Git-flow 전략 간단하게 살펴보기 를 참고하여 일단 짰습니다.
요약하면
과 같습니다.
예를 들어 AAA라는 기능을 개발한다고 했을때
develop에서feature/AAA브랜치를 만듭니다.이후 개발이 완료되면
feature/AAA브랜치를develop에 병합하는 형식입니다.커밋 규칙
협업을 위한 git 커밋컨벤션 설정하기 를 참고하여 짰습니다.
태그: 제목형태로 커밋 제목을 작성합니다.예를 들어 새로운 기능 AAA를 추가한 커밋은
feat: ~~ AAA ~~~형식이 되겠습니다.git commit -m을 사용해서 커밋 제목만 작성해도 좋지만 디테일 하게 작성하기 위해git commit으로 세부 내용을 작성하는 것도 지향합니다.Discussion
후에 google exp 에 출품한다 했을때 오픈소스를 생각해야 하니 모두 영문 작성이 어쩔 수 없나 생각했었는데
앞의 두 규칙과 커밋 영문 작성이 괜찮은지에 대해 얘기해 봤으면 싶습니다.
당연히 위 규칙들 말고도 다양한 방법도 좋습니다.
All reactions