- @참고: https://junjunrecord.tistory.com/131
- @참고(git branch & naming): https://velog.io/@kim-jaemin420/Git-branch-naming
branch 네이밍 규칙
1) master branch, develop branch
그대로 사용이 일반적
2) feature branch
feature/기능요약 형식 추천. ex) feature/login
feature/{issue-number}-{feature-name} 의 이슈추적 형식. ex) feature/1-init-project, feature/2-build-gradle-script-write
3) release branch
release-{version} 형식 추천. ex) release-1.2
4) hotfix branch
hotfix-{version} 형식 추천. ex) hotfix-1.2.1
'Git' 카테고리의 다른 글
[Git] .gitignore 특정 파일 또는 폴더 제외 / 무시하기 (1) | 2023.12.06 |
---|---|
[Git] git bash, Sourcetree 와 함께 git 을 배울 수 있는 Docs (0) | 2022.08.04 |
[Git] detached head 에서 commit 후 다른 branch 로 checkout 한 경우 lost commit hash 보기 및 해결 방법 (0) | 2022.07.29 |
[Git, Eclipse] git pull 하는 방법 (충돌 다루기) (0) | 2021.06.24 |
[Git] Submodule (0) | 2021.04.01 |