Web Development

Git - 코드리뷰 관련 방법

진열님 2020. 1. 15. 17:28

https://github.com/next-step/nextstep-docs/blob/master/codereview/review-step1.md

 

next-step/nextstep-docs

nextstep 매뉴얼 및 문서를 관리하는 저장소. Contribute to next-step/nextstep-docs development by creating an account on GitHub.

github.com


Git clone https://github.com/javajigi/java-racingcar

클론 후 해당 폴더로간다음 브랜치를 생성한다.

- git checkout -b "브랜치생성이름"

 

수정 후 체크할것

-git status //변경된 파일 확인

-git add -A // 변경된 전체 파일을 한번에 반영

-git commit -m "메시지" // 작업한 내용을 메시지에 기록

 

본인 원격 저장소에 올리기

- git push origin "브랜치이름"