Git pull
或fetch
意外停止了工作。
密码提示现在显示为
Password:
我期望看到的是
Password for 'https://example-user@bitbucket.org':
无论我输入正确还是错误的密码,都不会发生任何事情......只是命令提示符中的新行,没有错误消息,也没有提取新提交。
' git remote -v
'显示原点的正确地址,据我所知,服务器设置中没有任何变化可能解释这种意外行为。
我们非常感谢任何建议。
答案 0 :(得分:1)
我会尝试git config --list
只是为了确保git配置正确。在输出中搜索这些行:
user.name=Your Name
user.email=yourname@provider.com
答案 1 :(得分:0)
我通过在.git / config文件中将[remote" origin"]下的url从https更改为git@gitbuh.com解决了这个问题。
e.g。
url = https://github.com/[YOUR_REP_HERE]
到
url = git@github.com:[YOUR_REP_HERE] .git