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

偏向技术
/ 0 评论 / 200 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年08月19日,已超过1248天没有更新,若内容或图片失效,请留言反馈。

出现此问题,解决方案如下:原文链接

  1. 打开 Git Bash

  2. 查看当前 fork 配置的远程存储库

    bash
    $ git remote -v
    > origin  https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
    > origin  https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
    123
  3. 指定将与 fork 同步的新远程上游存储库

    bash
    $ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
    1
  4. 验证上游存储库

    bash
    $ git remote -v
    > origin    https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
    > origin    https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
    > upstream  https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (fetch)
    > upstream  https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (push)
    12345
0

评论 (0)

取消