[Git] Fork 레파지토리 원격저장소와 동기화
웹(WEB)/Githome$ cd java
java home$ cd git_clone
hoem/java/git_clone 폴더로 이동
git_clone home$ git clone https://github.com/ryeol37/testRepository.git
cd testRepository
git status
git add .
git commit
git push
ls -al
cd. .
pwd
git remote add upstream https://github.com/GiyunPark/testRepository.git
git remote -v
git fetch upstream
git merge upstream/master
참고 https://youngjinmo.github.io/2019/09/git-sync-forked-repo/
'웹(WEB) > Git' 카테고리의 다른 글
[Git] 브랜치, 원격저장소 사용법 (0) | 2019.09.25 |
---|