본문 바로가기

COMPUTER SCIENCE

[Git] fork 해 온 repository 내용 업데이트(pull) 하기

git remote add upstream "[fork 해 온 기존 repository url]"
git fetch upstream
git pull upstream main

참고 : https://stackoverflow.com/questions/3903817/pull-new-updates-from-original-github-repository-into-forked-github-repository

반응형