1. git pull 更新报错

fatal: ‘xxx’ does not appear to be a git repository fatal: Could not read from remote repository

解决方式:
1 检查远程关联 git remote -v
$ git remote -v
origin xxx (fetch)
origin xxx (push)
2 移除远程的origin
$ git remote rm origin
3 重新添加远程origin
$ git remote add origin git@xxxxx .git(这里是项目的远程git地址)
4 再次查看远程关联
$ git remote -v
origin git@xxxxx(fetch)
origin git@xxxxx(push)
如果到了这一步问题就解决了 可以使用git pull 了

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐