我严格遵守了这些说明,包括关于密码缓存的部分。看起来指令是错误的,因为每次我git push origin master都会得到这个错误:

git: 'credential-cache' is not a git command. See 'get --help'.

... 这时我必须输入我的用户名和密码。这样做之后,我再次看到相同的错误消息,然后是git push的输出。

下面是我的.gitconfig文件的内容:

[user]
    name = myusername
    email = myusername@myemaildomain.com
[credential]
    helper = cache

要清楚,在我安装Git并运行Git Bash后,下面是我输入的内容:

git config --global user.name "myusername"
git config --global user.email "myusername@myemaildomain.com"
git config --global credential.helper cache

请帮助。这太令人沮丧了!


当前回答

我刚刚真的经历了这个!

下载Git Credential Manager Core并安装:https://github.com/microsoft/Git-Credential-Manager-Core#download-and-install 进入GitHub上的帐户设置>电子邮件。你应该会看到这样的东西: 突出显示的电子邮件是系统生成的,以保持您的私人电子邮件私密性。现在复制它,并在下一步中使用它 配置git:

 git config --global user.name "yourusername"
 git config --global user.email "1234567+yourgithubusername@users.noreply.github.com"
 git config --global credential.helper cache

现在,git命令应该可以再次工作了。

小提示:我使用的是Linux Mint。YMMV

附加说明:在Debian版本的Git凭证管理器核心v 2.0.567中有一个bug。请在新版本发布之前安装v2.0.474。

其他回答

我通过从特定项目的配置中删除凭据部分来修复这个问题:

只需输入:git config -e 在编辑器中,我删除了整个部分[credential] helper = cache。

这就消除了恼人的信息:

'credential-cache'不是Git命令。参见'git -help'。

我在windows7上使用AptanaStudio3时遇到了这个问题。这帮助了我:

git config --global credential.helper wincred

在我的案例中,这个命令解决了这个问题:

git config --global credential.helper manager-core --replace-all

使用新的网络核心凭据管理器。

2022年10月Git 2.38.1+:

警告:git-credential-manager-core被重命名为git-credential-manager 警告:更多信息请参见https://aka.ms/gcm/rename

Git for Windows (2.38.1.windows。2022年10月1日)

 git config credential.helper
 manager

 where git-credential-manager-core
 c:\Program Files\Git\mingw64\bin\git-credential-manager.exe

截至2022年10月,它是经理核心。

这是在GCM (Git凭据管理器):microsoft/Git-Credential-Manager/之后

Git凭据管理器(GCM)是一个安全的Git凭据助手,构建在. net上,运行在Windows、macOS和Linux上。它旨在为每个主要的源代码控制托管服务和平台提供一致和安全的身份验证体验,包括多因素身份验证。

GCM支持(按字母顺序排列)Azure DevOps, Azure DevOps Server(以前的Team Foundation Server), Bitbucket, GitHub和GitLab。 与Git内置的凭据助手(Windows: wincred, macOS: osxkeychain, Linux: gnome-keyring/libsecret)相比,它们只提供用户名/密码的单因素身份验证支持。

GCM取代了Windows的基于。net框架的Git凭据管理器和Mac和Linux的基于java的Git凭据管理器。

请注意,最新版本v2.0.866(2022年11月)在可执行条目中删除了-core后缀(PR 551)

将主条目可执行文件从Git -credential-manager-core(.exe)重命名为Git -credential-manager(.exe),现在旧的GCM4W已经作为一个选项从Git for Windows项目中删除了(GCMC项目已经重命名)。 为了在一定程度上帮助迁移,可以为尚未更新到新版本的用户创建符号链接和为原始可执行名称“git- credicate -manager-core(.exe)”创建shim/copy-可执行文件。


在Git 2.34(2021年Q4)中,unix套接字开始被考虑用于Git for Windows:

参见Carlo Marcelo Arenas的commit bb390b1, commit 245670c, commit 0fdcfa2(2021年9月14日)Belón (carenas)。 (由Junio C Hamano—gitster—在commit c2e7990中合并,2021年9月23日)

Git-compat-util:包含Windows中Unix套接字的声明 署名:卡洛·马塞洛·阿里纳斯Belón

自Windows 10 1803版和Windows Server 2019版提供。 NO_UNIX_SOCKETS仍然是Windows构建的默认值,因为它们需要与Windows 7之前的版本保持向后兼容性,但允许包括头文件。

类似的错误是'credential-wincred'不是git命令

那些公认的、流行的答案现在已经过时了。

Wincred用于git-credential-winstore项目,该项目已不再维护。 它被微软开源维护的Git-Credential-Manager-for-Windows所取代。

从上面的链接下载zip文件,并提取内容到

\cygwin\usr\libexec\git-core

(或\cygwin64\usr\libexec\git-core)

然后启用它(通过设置全局的.gitconfig) -执行:

git config --global credential.helper manager

如何使用

不需要进一步配置。 当需要凭据时,它[自动]工作。 例如,当推送到Azure DevOps时,它会打开一个窗口并初始化oauth2流以获取您的令牌。

ref:

https://github.com/babun/babun/issues/318 https://github.com/Microsoft/Git-Credential-Manager-for-Windows#installation-in-an-msys2-environment