목록Git (1)
개발자 블로그

0. 현재 원격 레포지토리를 확인 $ git remote -v >>> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch) >>> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push) 1. 포크를 한 레포지토리(upstream repo)를 원격 레포지토리에 추가를 한다. $ git remote add upstream "forked repo address" upstream이라는 이름으로 해당 레포지토리를 원격 레포에 추가한다!라는 뜻. 2. 잘 되었는지 확인해보자! $ git remote -v >>> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git..
Git
2022. 5. 25. 12:02