Android Studio Bumblebee 中 Git 或 Github 拉取、推送错误解决方案 | 2021年1月1日

发布于 2025-01-14 16:16:27 字数 169 浏览 3 评论 0原文

git config credential.helper store

在设置 -> 中启用“使用凭据助手”版本控制->吉特。

在每个项目中,您都必须使用此终端代码进行配置。

*这是一个临时解决方案,直到找到与此问题相关的任何内容为止

git config credential.helper store

Enable "Use Credential Helper" in Settings -> Version Control -> Git.

In Every project you have to config with this terminal code.

*This is a temporary solution until find anything related to this issue

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

感情洁癖 2025-01-21 16:16:27

错误:-“推送失败,调用失败,来自服务器的文件意外结束”

在终端/CMD 中输入此命令

git config --local user.name 'your username'
git config --local user.password 'your password'
git config --global credential.helper store

解决方案:-另请确保在设置 > 中选中“使用凭据帮助”风控系统吉特。
Android 设置图片

Error:- "Push failed, Invocation failed Unexpected end of file from server"

Enter This command in terminal/CMD

git config --local user.name 'your username'
git config --local user.password 'your password'
git config --global credential.helper store

Solution:- Also make sure, "Use Credential help" is checked in setting > VCS > Git.
Android Setting image

如梦亦如幻 2025-01-21 16:16:27

在每个项目中,您都必须使用此终端代码进行配置。

如果您想一次性为每个项目配置它:

git config --global credential.helper store

请注意 Microsoft GCM (Git Credential Manager )比“store”(以纯文本形式存储凭据)更安全。
您可以在 Windows/Linux/Mac 上安装 GCM(它默认情况下带有 Git for Windows

In Every project you have to config with this terminal code.

If you want to configure it for every project in one go:

git config --global credential.helper store

Note that the Microsoft GCM (Git Credential Manager) would be more secure than 'store" (which stores credentials in plain text).
You can install GCM on Windows/Linux/Mac (it comes by default with Git for Windows)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文