第一:检查.ssh是否存在(ls -al ~/.ssh) $ ls -al ~/.ssh Lists the files in your .ssh directory, if they exist 第二:产生新的SSH key(ssh-keygen -t rsa -C "your_email@example.com") $ ssh-keygen -t rsa -C "your_email@example.com" Creates a new ssh key, usi…
将web项目导入到eclipse中常见错误 错误1:string cannot be resolved to a type 原因:这种情况一般是因为你的JDK版本没有设置好,或者设置的有不一致的地方. 解决方案: 1.首先检查window->preferences->Java->compiler 和Installed JRE的版本是否一致,不一致请设置一致它.这时候如果还报错请看第二步. 2.在项目上右键->properties->Java Build Path…