웹(WEB)/Git

[Git] Fork 레파지토리 원격저장소와 동기화

고품격미식가 2019. 9. 30. 15:30

home$ 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/