一、遇到的问题1,JDK下载安装包后安装失败,提示:package jdk1.8.0_131-2000:1.8.0_131-fcs.x86_64 is intended for a x86_64 architecture
阅读错误提示,发现时安装包版本(x64)和系统版本(i386)不匹配,重新下载安装包版本(i586),安装成功,问题得以解决;
二、git克隆代码时报错,提示信息如下:
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
经过排查发现,没有权限,未生成公共/私有RSA密钥对;
解决方法:先生成RSA 密钥,然后在github上添加SSH key;
三、git推送(git push origin master)时报错,提示:
error: src refspec master does not match any.
error: 无法推送一些引用到 'origin'
排查原因后,发现未进入项目目录,此处为:/idohcr
进入后再进行init\add\commit\push,推送成功;
当然,还有其他各种问题,总体的思路是,先阅读报错信息,尝试解决。如果无法解决,可通过搜索引擎,查找相同或类似的问题,查找解决方案。若问题仍未能解决,可通过请教或求助于其他人帮忙提供解决思路和方法。
网友评论