$ git checkout -b branch명
$ git add .
$ git commit -m "문제 이름"
$ git push origin branch 명
- Compare & Pull request
2. Create pull Request
- 다른 브랜치에서 해당 명령어 실행
$ git branch -d branch명
( local 브랜치 삭제 )
$ git push origin --delete branch명)
( remote 브랜치 삭제 )
☑️ branch 확인 방법
- local branch 확인 :
$ git branch
- remote branch 확인 :
$ git branch -r