Git Fork 하고 Pull Request 만들기
원하는 저장소 fork
- 원하는 저장소에가서 fork
https://github.com/<owner>/<repository> - fork된 저장소
https://github.com/<contributor>/<repository>
fork된 저장소 clone
git clone https://github.com/<contributor>/<repository>
branch 관리
branch 확인
git branch -a
branch 생성
git switch -c <workingBranch>
branch 변경
git switch <workingBranch>
code 수정
git add <file>
git commit -m "<message>"
git push