-
[Git] Fork한 레포지토리에서 pull 받기Github 2023. 1. 18. 14:50
처음에 그냥 포크받은 내 레포지토리에서 git pull 명령어를 입력하니 이렇게 뜸
yeonsu@MacBook-Pro-2 Reborn_Front % git pull Already up to date.
git remote -v
git remote add upstream 기존 레포지토리 주소
yeonsu@MacBook-Pro-2 Reborn_Front % git remote -v origin https://github.com/yeonsu0-0/Reborn_Front.git (fetch) origin https://github.com/yeonsu0-0/Reborn_Front.git (push) yeonsu@MacBook-Pro-2 Reborn_Front % git remote add upstream https://github.com/umc-reborn/Reborn_Front.git
yeonsu@MacBook-Pro-2 Reborn_Front % git fetch upstream
yeonsu@MacBook-Pro-2 Reborn_Front % git merge upstream/main
만약 .DS_Store 때문에 머지 충돌이 난다면 상위 폴더에서 아래 코드 입력
eonsu@MacBook-Pro-2 ~ % find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
머지 충돌날 때 VSCode에서 확인하면서 병합해주기
💡 { } 갯수 각각 일치하는지 확인해주면 좋음! - 나연이 꿀팁
'Github' 카테고리의 다른 글
[Git] 브랜치 관련 명령어 (0) 2023.05.27 [Mac/Github] 하나의 repository에 여러 개의 프로젝트 폴더 올리는 방법 (0) 2022.08.20 [Git] 브랜치(Branch)생성 및 업로드 (0) 2022.07.23 [Git] github에 업로드 하기 (1) 2022.07.22 [Git] 참고 사이트 모음 (0) 2022.07.21