Posts Git, Remote repo add
Post
Cancel

Git, Remote repo add

사용 배경

  • Git clone해온 원격 저장소말고 다른 저장소와 연결하고 싶을때 사용

사용 방법

  • git remote add {저장소_별칭} base_저장소_url

    1
    2
    3
    
    // 연결하고자하는 git 저장소로 이동
    
    git remote add upstream https://github.com/{...}/{...}
    



  • git remote -v
    • 지정한 별칭으로 연결된 저장소가 보이면 연결 완료



  • git fetch {저장소_별칭}

    1
    
    git fetch upstream [optional]{branch name}
    



  • rebase, merge, push, pull등 upstream과 기존 저장소간 명령어 실행
This post is licensed under CC BY 4.0 by the author.