Git Error : 'upstream' does not appear to be a git repository

后端 未结 5 1456
感动是毒
感动是毒 2021-01-31 14:06

I\'m very new to Git, so facing some issues with it correct usage. Here is my scenario.

I have a fork of my master repository and cloned it into my local. In that, I hav

5条回答
  •  再見小時候
    2021-01-31 14:33

    You must get a fork of a git project then:

    git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git,

    you can proceed git fetch upstream

提交回复
热议问题