Your push would publish a private email address

news/2024/10/18 10:16:35/

使用git push 的时候报错:

remote: error: GE007: Your push would publish a private email address.        
remote: You can make your email public or disable this protection by visiting: 

原因居然是:在gitee设置邮箱管理的时候没注意,勾选了”禁止命令行推送暴露个人邮箱“

点击”设置“-”基本设置“-”邮箱管理“-取消勾选

 取消勾选后,重新push即可


http://www.ppmy.cn/news/590584.html

相关文章

wait命令

wait命令:概念:阻塞当前进程的执行,直到指定的子进程结束后,当前线程才会继续执行。格式:wait [进程号]常用:wait在shell中直接使用wait: 等待所有的子进程结束后,当前进程才继续往下…

Waring: \app\push\controller\Events::onMessage is not callable

workerman 在linux中运行命令行 php server.php start 报错 主要warning: Waring: \app\push\controller\Events::onMessage is not callable原因: 在tp5 中,把类名和类文件名都修改成Events即可 参考:https://wenda.workerman.net/question/1227?item_id2265&rffalse

‘WxMpTemplateMessage‘. Cannot be accessed from outside package

在使用微信第三方SDK实现消息订阅时发现该错误 意思是无法在包外调用该方法.在使用依赖包时如果是2.7.0则不会出现该问题.但使用2.9.0以上的版本时则会出现该问题. <dependency><groupId>com.github.binarywang</groupId><artifactId>weixin-java-m…

Linux wait()/waitpid()

这里写目录标题 wait()waitpid() wait() 使用wait()函数与waitpid()函数让父进程回收子进程的系统资源&#xff0c;两个函数的功能大致类似&#xff0c;waitpid()函数的功能要比wait()函数的功能更多。 所需头文件&#xff1a; #include<sys/types.h> #include<sys/…

Meteor.call Wrapper

问题&#xff1a;在Meteor开发时&#xff0c;添加一个Loading的功能&#xff08;即使运行Meteor.call显示和隐藏loading overlay&#xff09;在Meteor.call的生命周期上。 不多解释&#xff0c;直接上代码。本人刚入门不久&#xff0c;可能这个方案比较土&#xff0c;不过在有…

Please, don't hate me

Please, dont hate me Please, dont hate me Please, dont hate me Please, dont hate me Please, dont hate me Please, dont hate me Please, dont hate me

warning: push.default is unset错误提示

1 错误还原&#xff1a; 在执行 git push 时看到如下消息: warning: push.default is unset; its implicit value is changing in Git 2.0 from matching to simple. To squelch this message and maintain the current behavior after the default changes, use: git c…

wait()/notify()的使用

wait()/notify() 通常&#xff0c;多线程之间需要协调工作。例如&#xff0c;浏览器的一个显示图片的线程displayThread想要执行显示图片的任务&#xff0c;必须等待下载线程downloadThread将该图片下载完毕。如果图片还没有下载完&#xff0c;displayThread可以暂停&#xff0…