赞
踩
看效果
执行git clone拉取代码出现错误RPC failed,curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054解决方法
问题1、
fatal: not a git repository (or any of the parent directories): .git
解决:
$ git init
问题2、
fatal: No such remote 'origin'
git remote set-url 是修改远程的url的命令,前提是要先有远程url
so 你必须先增加一个远程url
git remote add origin "xxx.git"
最后重新设置即可
问题3、
Git: There is no tracking information for the current branch.
在执行git pull的时候,提示当前branch没有跟踪信息:
git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
对于这种情况有两种解决办法,就比如说要操作master吧,一种是直接指定远程master:
git pull origin master
最后还是有问题的话,删掉该目录,重新Git clone
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。