赞
踩
今天在使用git下载qemu源代码的时候, git clone git://git.qemu.org/qemu.git 总是提示
Cloning into ‘qemu’…
fatal: ‘origin’ does not appear to be a git repository
fatal: Could not read from remote repository.Please make sure you have the correct access rights
and the repository exists.
此问题断断续续解决了两天, 并且再次确认github以及本地git配置都是正确的, 始终没找到真正的解决办法,倍感郁闷。
今天在https://stackoverflow.com/questions/32238616/git-push-fatal-origin-does-not-appear-to-be-a-git-repository-fatal-could-n上偶然看到一个方法, 使用git remote -v 来 check that your origin is set by running。 在git clone环境下输入git remove -v,打印如下:
kitty@kitty-virtual-machine:/mnt/hgfs/Linux/GIT$ git remote -v
fatal: Not a git repository (or any parent up to mount point /mnt/hgfs)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
这个提示很明显, fatal: Not a git repository (or any parent up to mount point /mnt/hgfs) 。
我的git clone是在虚拟机上运行的, /mng/hgfs 是我挂载在虚拟机上的一个外接硬盘, 在/mng/hgfs 下执行git clone居然会失败!
切换到~/Document下,再次 执行git clone git://git.qemu.org/qemu.git,成功执行。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。