git pull request하기
local에서 만든 commit을 remote repo에 적용하기 위한 리뷰 절차
git checkout -b local_test # pull 요청전에 branch만들기
# ... 작업
git push origin local_test # origin에 push
이후에 리뷰 절차 진행함
참고자료
'Git' 카테고리의 다른 글
| Git pull request 하기 (0) | 2025.02.11 |
|---|---|
| git pull request 수정하기 (0) | 2024.08.10 |
| git에서 diff한 결과 적용(apply)하기 (0) | 2024.08.10 |
| git archive로 zip파일 만들기 (0) | 2024.05.26 |
| git tag 생성 & push (0) | 2024.05.26 |