프로젝트
[git 협업] PR 올리기
brotoo
2021. 10. 6. 13:01
0. issue 생성하고 거기에 관련 내용 작성
1. fork 뜬 것 clone
2. 원격 저장소 remote 설정
git remote add upstream [url]
3. branch 생성
git checkout -b [이름(이슈번호 ex iss47)]
4. 코드 수정
git add .
git commit -m "커밋 메시지"
5. PR branch에 push
git push origin iss47