执行git命令时出现fatal: ‘origin‘ does not appear to be a git repository错误

执行git命令时出现fatal: ‘origin’ does not appear to be a git repository错误

在执行git pull origin master时出现:
  fatal: ‘origin’ does not appear to be a git repository
  致命提示:“origin”看起来不是一个git存储库
  fatal: Could not read from remote repository.
  致命:无法从远程存储库读取。
  Please make sure you have the correct access rights and the repository exists
  请确保您拥有正确的访问权限,并且存储库存在
解决方案:

git remote add origin git@github:bx_reader/bx-reader-api.git

将关联远程仓库为origin

PS:建议先检查路径是否在项目路径里边(我的是路径没留神看错了

你可能感兴趣的:(git,命令)