异常问题: 下班之前升级了一下Git的版本,结果第二天过来拉取远程最新代码的时候就提示了下面的异常问题: Unable to negotiate with xx.xxx.xxxx port 22: no matching host key type found. Their offer: ssh-rsa Git failed with a fatal error. Git failed with a fatal error. Could not read from remote reposito…
前言 前两天因为升级了Git导致git提交拉取的时候都提示下面这个异常,然后经过一番折腾以后终于把这个问题解决了.但是今天我升级了下Visual Studio 2022将其升级到了17.1.3版本然后又出现了这个问题,奇怪的是我使用VS 2019没有问题(VS2019没有升级),然后使用Git Bash也是可以正常拉取提交.唯独使用VS 2022就提示下面的异常(真的是问题天天有,四月特别多): Unable to negotiate with xx.xxx.xxxx port 22: no m…
windows电脑重装系统,去官网下载了最新的git安装,一路next下来,打开bash按老路子设置,生成公钥 git config --global user.name "yourname" git config --global user.email "your@email.com" ssh-keygen -t rsa -C "your@email.com" 把公钥添加到阿里云,clone代码时拉不下来,报错. Unable to negot…
在执行git clone命令报错 Unable to negotiate with xxx.xxx.xxx.xxx port 12345: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 Unable to negotiate with : no matching key exchange method found. Their offer: diffie-hellman-group1-…
git clone 报错 Unable to negotiate with xxx.xxx.xxx.xxx. port 12345: no matching cipher found. Their offer: aes128-cbc,3des-cbc,blowfish-cbc 解决: # sudo nano /etc/ssh/ssh_config 把以下代码放到指定位置, Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,a…
pod search MJRefresh的时候报错 [!] Unable to find a pod with name, author, summary, or description matching MJRefresh 解决办法: 移除search_index.json,然后重新下载 执行命令:rm -rf ~/Library/Caches/CocoaPods/search_index.json 执行结果: tinydeMacBook-Pro:~ tiny$ rm -rf ~/Librar…
什么是Kconfig.xx.defconfig.xx.config.Makefile Kconfig: 一个文本形式的文件,其中主要作用是在内核配置时候,作为配置选项. xx.deconfig: Linux支持多种平台架构.在其源码的arch目录下(如arch/arm/configs/msm_defconfig),已经将各种支持的平台架构的源码分门别类.为了配置方便,在各种平台架构的目录下,一般都配有一个名为configs的目录.其中,放置着许多已经初步配置好的defconfig文件.通过这些d…
在linux环境下配置项目运行环境时,部署的人员都会分配一下内存,以保证程序正常的运行.其实在开发的时候(window系统),就已经涉及到内存分配了,只是这些参数有默认值,因此一直没有去重视它. 以Myeclipse为例,在Preferences->Java->Installed JREs下面,就有设置jvm内存分配. 这里我们就可以配置内存,一般我们见到的都是 -Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m linux中一般为…
问题描述:eclipse不能自动编译XX.java为XX.classs 原因:今天下午写代码,因为需要引入jstl包,引入后发现原来项目中已经引入了,然后我又把包删除了,忘记删除java build path 中的jar包.但是一直不报错.我觉得郁闷惨了. 解决办法:将java build path 中的有错的jar包 remove掉就可以了. 总结:经验不足,慢慢积累吧.…
myeclipse.ini把里面的参数为 -vmargs -Xmx512m -XX:MaxPermSize=256m -XX:ReservedCodeCacheSize=64m 以对于我而言,我只要把我的myeclipse.ini改 为myeclipse提示的 -vmargs -Xmx768m -XX:MaxPermSize=384m -XX:ReservedCodeCacheSize=64m 其中myeclipse报错很多中,开始的时候都不知道是内存溢出,所以百度不到 !MESSAGE An…