Git or Github pull, push 错误解决方案在Android Studio Bumblebee | 2021.1.1
Git or Github pull, push errors solution in Android Studio Bumblebee | 2021.1.1
git config credential.helper store
在设置 -> 版本控制 -> Git 中启用“使用凭据助手”。
在每个项目中,您都必须使用此终端代码进行配置。
*这是一个临时解决方案,直到找到与此问题相关的任何内容
错误:-“推送失败,调用失败来自服务器的意外文件结尾”
在terminal/CMD
中输入此命令
git config --global credential.helper store
解决方案:- 还要确保在设置 > VCS > Git 中选中“使用凭据帮助”。
Android Setting image
*这是一个临时解决方案,直到找到与此问题相关的任何内容
In Every project you have to config with this terminal code.
如果您想一次为每个项目配置它:
git config --global credential.helper store
请注意,Microsoft GCM (Git Credential Manager) 比“store”(以纯文本形式存储凭据)更安全。
你可以install GCM on Windows/Linux/Mac (it comes by default with Git for Windows)
git config credential.helper store
在设置 -> 版本控制 -> Git 中启用“使用凭据助手”。
在每个项目中,您都必须使用此终端代码进行配置。
*这是一个临时解决方案,直到找到与此问题相关的任何内容
错误:-“推送失败,调用失败来自服务器的意外文件结尾”
在terminal/CMD
中输入此命令git config --global credential.helper store
解决方案:- 还要确保在设置 > VCS > Git 中选中“使用凭据帮助”。 Android Setting image
*这是一个临时解决方案,直到找到与此问题相关的任何内容
In Every project you have to config with this terminal code.
如果您想一次为每个项目配置它:
git config --global credential.helper store
请注意,Microsoft GCM (Git Credential Manager) 比“store”(以纯文本形式存储凭据)更安全。
你可以install GCM on Windows/Linux/Mac (it comes by default with Git for Windows)