$ git remote add [저장소명] [url]
//remote repo 목록 확인
$ git remote -v
//local에 branch 생성
$ git branch [branch명]
$git checkout [branch명]
$ git push [저장소명] [branch명]
그 후 깃헙에서 pull request를 진행한다.
그럼 이렇게 된다...
해결법은...
$ git pull devcourse main --allow-unrelated-
histories
그럼 충돌나는 것을 merge 한 후 다시 push를 진행한다.
$ git push [저장소명] [branch명]
그 후 깃헙에서 pull request를 진행한다. 성공!!!