本文介绍了藏匿Git错误“致命:远程错误:需要验证码"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试使用以下命令从我的Stash项目中提取信息:

Attempting to pull from my Stash project, using the following commands:

$ git remote add origin https://[email protected]/scm/~username/project.git
$ git pull origin develop

提示我输入密码,然后输入以下错误:

I'm prompted for my password, which I enter and then get the following error:

注销并重新登录无济于事.我该如何解决?

Logging out and back in again does not help. How do I fix this?

推荐答案

问题是网址格式错误:应该为 https://[email protected]/scm/~username/project.git 而不是stash @ stash.

The problem was a malformed URL: it should be https://[email protected]/scm/~username/project.git instead of stash@stash.

这篇关于藏匿Git错误“致命:远程错误:需要验证码"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 05:09