1.Git版本:Git-2.17.0 2.引起git报错的原因 在变更远程仓库路径的的时候,弹出过一个窗口输入用户名和密码,但是输错了,之后执行任何拉取和更新的命令都会报如下的错: fatal: Authentication failed for 'https://xxxxx.git' 3.按照网上说的方式修改 git remote -v git remote remove origin git remote add origin xxx 还有 git config --global user.…
如果在git配置中报错fatal: Authentication failed for '',其实就是凭证失败的意思 接着输入一下命令行没有出现要求输入用户名或密码,并报错 $ git config --system --unset credential.helper   error: could not lock config file C:/Program Files/Git/mingw64/etc/gitconfig: Permission denied 1.首先你需要确认你的账号密码是否…
cmd输入pip3 list命令报错 Fatal error in launcher: Unable to create process using '"d:\old_files\py3.6\python.exe"  "E:\py3.6\Scripts\pip3.exe" list' 进入python3的Scripts目录 我的目录是E:\py3.6\Scripts,然后执行cmd 2.执行python pip3.exe install SomePackage进行安…
git pull 出现 fatal: Authentication failed for 'http://git... git config --system --unset credential.helper error: could not lock config file C:/Program Files/Git/mingw64/etc/gitconfig: Permission denied 在 windows cmd 中执行 git config --system --unset cr…
SVN 执行cleanup报错:Cleanup failed to process the following paths 先来说下这个错误的原因:用SVN在使用过程中,各种原因中途取消或中断,导致需要执行cleanup,但是由于上次操作未完成,在.svn/wc.db中的work_queue表中记录了SVN的工作队列,所以在执行cleanup时就报错了. 解决方法:清空.svn/wc.db中的work_queue表中的工作队列,让SVN没有”Previous operation(上一个操作的信息…
一.发现问题 在测试邮件发送程序的时候,发送给自己的QQ邮箱,程序报错454 Authentication failed, please open smtp flag first. 二.解决问题 进入QQ邮箱——>设置——>账户——>POP3/IMAP/SMTP选择——>开启POP3/SMTP服务. 三.POP3和SMTP是什么 1.基本概念一般每个提供电子邮件服务的网站都有自己的SMTP和POP服务器地址.POP(Post Office Protocol)邮局通讯协定,POP是互…
自从使用git提交代码到github后,发现自己使用git的功力增长了不少,但也遇到不少问题.比如,使用git提交代码到github的时候,经常要求输入用户名和密码,类似这种: 网上有这么一种解决方法:使用git提交到github,每次都要输入用户名和密码的解决方法 它使用方法,其实就是将https替换成了ssh.但始终觉得不怎么好,原因是,我在git clone别人项目的时候,一般是直接从浏览器中复制URL的,类似这种方式: 所以又找了找解决方案,终于找到解决办法, 1 找到项目的.git目录…
报错内容: $ git add . fatal: Unable to create 'E:/project/qbm_cs/.git/index.lock': File exists. Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try agai…
使用git提交文件到github,每次都要输入用户名和密码,操作起来很麻烦,以下方法可解决,记录以下. 原因:在clone 项目的时候,使用了 https方式,而不是ssh方式. 默认clone 方式是:https 切换到:shh 方式 切换后如下: 解决方法: 到本地项目文件夹子,打开git bash 1.查看clone 地址:git remote -v 说明是https 方式,现在换成ssh方式. 2.移除https的方式,换成 ssh方式 git remote rm origin 3.添加…
535报错解决方案:调用163邮箱服务器来发送邮件,我们需要开启POP3/SMTP服务,这时163邮件会让我们设置客户端授权码,这个授权码替代上面代码部分的passwd即可成功发送邮件 如果设置的邮箱是qq邮箱也可以通过此办法解决 邮件通知标题:构建通知:${BUILD_STATUS} - ${PROJECT_NAME} - Build # ${BUILD_NUMBER} ! 邮件通知正文: <!DOCTYPE html><html><head><meta cha…