错误信息: ....... ! [rejected] 573_0811_stable -> 573_0811_stable (already exists)updating local tracking ref 'refs/remotes/origin/next'error: failed to push some refs to 'git@10.10.1.18:hi/hello.git'hint: Updates were rejected because the tag already ex…
使用wkwebview时,push后,再pop返回,报错 Cannot form weak reference to instance (xxxx) of class xxxx. It is possible that this object was over-released, or is in the process of deallocation 原因是给webView.scrollView设置了代理:webView.scrollView.delegate = self : 解决办法: -…
对android工程运行mvn compile出现如下信息: No Android SDK path could be found. You may configure it in the pom using <sdk><path>...</path></sdk> or <properties><sdk.path>...</sdk.path></properties> or on command-line us…
先装了matlab2018b,发现很频繁的crash,同时考虑到要跑的代码在>=2017a时就计算错误,于是转战matlab2016b matlab2016b安装后,执行mex -setup报错: >> mex -setup find: 37589: No such file or directory find: 37592: No such file or directory find: 37595: No such file or directory 尝试了matlab2015b,发…
Git提交代码push时,报错这个 error: src refspec master matches more than one. error: failed to push some refs to 'xxx.git' 发现原因是因为git里有一个tag(标签)和当前提交分支重名了,git检测到多个重复名称,因而报错提示你... 解决办法: 1.云端重新命名tag,弄好后重新pull,再push,如果还不行,就用第二种 2.本地删除掉tag,再push就可以了 - 如果是SourceTree…