git报错:‘origin‘does not appear to be a git repository的解决方法

在这里插入图片描述

  • 首先输入命令查看仓库是否有关联: git remote -v;如果输出没有东西,说明没有关联
  • 关联仓库:git remote add origin “仓库地址”
  • 再 git push ‘xxx’ 推送代码

你可能感兴趣的:(git)