1. Git clone

클론하려는 리퍼지토리 주소를 복사 한 후,

원하는 폴더에서 git bash 실행

Untitled

git clone <https://github.com/seongahpark/Algorithm_Study.git>

Untitled

2. 본인 이름 branch 생성

생성된 Algorithm_Study에서 다시 git bash를 실행시킴

git branch 본인아이디
git checkout 본인아이디

Untitled

bash 에서 오른쪽 파란색 글이 본인 브랜치로 checkout 된 것을 확인!

3. 해당 주차 내용 push

Untitled

해당주차 > 본인아이디 폴더 생성 > 알고리즘 문제 파일들 넣어놓기

git add .
git commit -m "9주차 박성아"
git push -u origin 본인브랜치

★꼭 main이 아닌 본인 브랜치로 push 해야 함

4. Pull Request