github 다른 레포에 로컬 올리기

happy_quokka·2023년 11월 14일
0

Git

목록 보기
2/4

https://velog.io/@hidaehyunlee/%EC%9B%90%EA%B2%A9%EC%A0%80%EC%9E%A5%EC%86%8C-%EC%97%AC%EB%9F%AC%EA%B0%9C-%EC%97%B0%EA%B2%B0%ED%95%98%EA%B8%B0

$ 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를 진행한다. 성공!!!

0개의 댓글