본문 바로가기
기타 분야/Git

다른 사람의 Repo를 내 Repo로 가져오기 (Github)

by woohyeon 2021. 4. 20.
반응형
  1. 내 Github에 가져올 Repo의 이름과 동일한 새 Repo를 생성. 이때, README, gitignore, license는 모두 초기화하지 않는다.

  2. 가져올 Repo를 내 PC(local)에 다음과 같이 clone 한다.
    git clone https://github.com/other-account/other-repository.git

  3. clone한 local repo를 1번에서 만든 새 Repo와 연결
    git remote add origin http://github.com/my-account/my-repo.git

  4. git branch -M main

  5. git push -u origin main

3번부턴 그냥 아래처럼 github에 나와있는 대로 따라하면 됨

 




댓글