nuga@nugawiki: $ cat ./docs/$1
Git 이슈 기반 버전 관리 워크플로우
이슈 페이지 타임라인에 작업·커밋·PR을 묶어 추적.
GitHub
- Repository 생성 → Projects(To Do/In Progress/Done) → Labels/Milestones → New Issue
Local
git init
git remote add origin <url>
git checkout -b <이슈번호-설명>
git push -u origin <브랜치>
# 작업 후
git add . && git commit -m "[#N] 제목\n\nResolves #N"
git push
# 병합
git rebase master && git checkout master && git pull --rebase
git merge <브랜치>
# 정리
git push origin -d <브랜치> && git branch -d <브랜치>
관련 링크: https://www.huskyhoochu.com/issue-based-version-control-201
./comments