错误信息: ....... ! [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 : 解决办法: -…
打开终端,执行命令: 1.sudo chown -R XXX /usr/local  (XXX表示当前用户名) 2.ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 提示报错: warning: unable to access '/Users/lucky/.config/git/attributes': Permission denied 出现此问题的原因…
产生以下原因找到了:是因为启动了appium,两者冲突,不能同时使用. 之前讲过怎么安装u2([Mac安装,ATX基于uiautomator2]之安装步骤)以及使用weditor, 但是经过一段时间,weditor不用的时候再打开发现,报错了: requests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer')) 解决办法如下: pc命令…
  1.下载安装 下载地址: https://maven.apache.org/download.cgi 下载后解压下来重名名为ApacheMaven,并放入到/usr/local/下 2.配置环境变量 打开终端,输入命令: vi ~/.bash_profile 如果没有该文件,就输入命令touch ~/.bash_profile ,再输入上面的命令. 打开.bash_profile之后,按下i键,使其进入编辑状态.然后输入下面命令来配置环境变量(下面的M,你可以自己命名): export M=…
对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,发…
1, 使用 sudo npm install -g n2, 或者 sudo chmod -R 777 /usr/local/lib,然后 npm install -g…
最近在 push 代码到 github 时,IDEA报错 Push rejected: Push to origin/master was rejected 在网友找了一圈,发现都不是想要的答案 于是在命令行敲了一遍 git push,报错信息如下 remote: error: GH007: Your push would publish a private email address. 其实上面这个才是真正具体的错误原因,其实是你修改了设置里关于邮箱的一个选项 解决办法:在GitHub的你账号…
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…