TIL #17 git - pull Request

henry·2021년 3월 5일
0
post-custom-banner

pull Request (PR) 란

  • 내가 수정한 코드가 있으니 내 branch를 병합해달라고 요청

순서
1. repository 생성

1-1 repository 생성후 작업할 폴더에서 git init
1-2 git remote add origin 저장소주소 
  1. push 전에 pull
2-1 git pull origin master	//저장해 놓은reoisutpository를끌어옴 
2-2 git status	// 현재 나의 로컬 폴더와 깃과의 씽크 상태를 check
  1. branch 생성
 git checkout 브랜치명
  1. 수정 작업 후 add, commit, push
git add.		// 변경된 모든 파일을 tracking
git commit -m "msg"	// 
git push origin 브런치명
  1. Pull Request 생성
  • 깃허브에 들어가 보면 Compare & pull request 박스 생성 -> 클릭

Create pull request를 누르면 Pull Request가 생성되어 PR 적음

  1. Merge Pull Request
post-custom-banner

0개의 댓글