出现Warning: Permanently added 'github.com,xx.xx.xxx.xxx' (RSA) to the list of known hosts.问题时,对应的解决办法是找到系统的hosts文件,windows系统一般在C:\Windows\System32\drivers\etc下,打开在最后写上
在git连接远程github仓库时,报error: failed to push some refs to 'git@github.com:xxxxxx/xxxxxx.git'错,原因是在github里的README.md文件不存在于本地仓库,解决办法是
在git Bash里输入git pull --rebase origin master将远程仓库的README.md移到本地,
然后再次$ git push -u origin master就可以了。