3. Git 협업 ( PR [Pull Request] 생성 / 코드 리뷰 / Merge Pull Request )
개발하는 branch를 생성한다. * Git 협업 (Contributors 추가방법) : https://crispypotato.tistory.com/123 * Git 협업 Fork / upstream 등록 방법 : https://crispypotato.tistory.com/124 * branch 생성 방법 : https://crispypotato.tistory.com/108 git branch (브런치) branch 생성 git branch 브런치이름 branch 이동 git checkout 사용할 브런치이름 branch 병합 A브런치에 있는 내용을 B브런치에 병합하기 A브런치에서 => B브런치로 이동 후 => merge git checkout B git merge.. crispypotato.tistor..
2021.08.23