-
develop branch에서 새로운 branch를 만들어 작업을 한다.
- 이때 branch 명은 feature/[기능이름]
-
commit 메세지는 링크 활용
-
merge하기 전에 pull request 올리자
git add .
git commit (ex: Feat: 추가 로그인 API 로직 구현)
git push origin 브랜치 이름 (ex: feature/#1)
develop branch에서 새로운 branch를 만들어 작업을 한다.
commit 메세지는 링크 활용
merge하기 전에 pull request 올리자
git add .
git commit (ex: Feat: 추가 로그인 API 로직 구현)
git push origin 브랜치 이름 (ex: feature/#1)