<TIL - 0022> Fork 부터 Pull Request

개발일지·2023년 4월 12일
0

til

목록 보기
22/43


1. Fork

2. clone

$ git clone url

3. branch

$ git checkout -b 브랜치명

4. push

$ git add .
$ git commit -m "커밋메세지"
$ git push origin 브랜치명

5. pull request

push 완료후 github Compare & pull request 버튼

6. code review, merge

7. sync fork, branch

코드 동기화
$ git pull real-blog(remote 별명)
브랜치 삭제
$ git branch -d develop(브랜치 별명)



profile
아닐지

0개의 댓글