我严格遵守了这些说明,包括关于密码缓存的部分。看起来指令是错误的,因为每次我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

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


当前回答

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

git config --global credential.helper wincred

其他回答

我最初的答案对我自己来说也不是很有用,所以我进一步研究了一下,发现了一个破解方法(尽管有点复杂)。

所以,我在MSYS2下使用git,我想使用凭据缓存,只是暂时记住我的密码(我还没有见过wincred或其他适用于windows的方法的用例)。

基本上,这需要一个https://github.com/git/git/blob/55144cc/builtin/credential-cache--daemon.c#L239的黑客-而不是死在这一行,我们想继续。

因此,首先,我们想在MSYS2下构建git。

问题1:你不能在MSYS2下构建合适的https://github.com/git/git,链接阶段将失败,“src/git/cache.h:1262: undefined reference to ' win32_has_dos_drive_prefix'”和类似的消息

因此,我们需要构建MSYS2中使用的实际git。首先,检查版本:

$ git --version
git version 2.33.0
$ pacman -Ss git | grep installed # msys/git 2.33.0-1 (VCS) [installed]

然后,根据https://www.msys2.org/wiki/Creating-Packages/,我们可以这样做:

$ git clone "https://github.com/msys2/MSYS2-packages"
$ cd MSYS2-packages/
$ cd git
$ makepkg -sCLf
==> Making package: git 2.33.0-1 (Thu, Sep 23, 2021 12:47:33 PM)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...
...
make[1]: Entering directory '/c/src/MSYS2-packages/git/src/git-2.33.0'
make[1]: 'GIT-VERSION-FILE' is up to date.
make[1]: Leaving directory '/c/src/MSYS2-packages/git/src/git-2.33.0'
sed -e '1s|#!.*/sh|#!/bin/sh|' git-subtree.sh >git-subtree
chmod +x git-subtree
make: Leaving directory '/c/src/MSYS2-packages/git/src/git-2.33.0/contrib/subtree'
==> Starting check()...

注意:

这个构建过程首先在ASCIIDOC/XMLTO部分中结束,在我的机器上需要半个小时 然后它结束在一个*** prove ***部分,这需要更长的时间,但可以用Ctrl-C中断,并且构建的可执行文件将不会被擦除。

现在我们想在源代码中做一个hack;注意:

如果我们在源代码中进行黑客操作,我们不希望使用makepkg -sCLf,因为这将删除源目录(以及所有构建的.exe工件),然后在构建之前重构它

所以,我们用sed创建我们的hack,然后构建:

$ sed -i 's/die(_(permissions_advice), dir);/fprintf(stderr, "Permissions on cached credentials socket directory %s are too loose, but HACK: going on\\n", dir);/' ./src/git-2.33.0/builtin/credential-cache--daemon.c
$ (cd src/git-2.33.0/; make)
    CC builtin/credential-cache--daemon.o
    LINK git.exe
...
    SUBDIR templates

在这一点上,请注意,黑客最终至少在三个可执行文件中结束,这可以通过以下方式确认:

$ grep -ao ....HACK........ ./src/git-2.33.0/git-credential-cache--daemon.exe
$ grep -ao ....HACK........ ./src/git-2.33.0/git-credential-cache.exe
$ grep -ao ....HACK........ ./src/git-2.33.0/git.exe

... 我只能把这三个都换掉后才能让它工作:

# backup the original files:

$ mv /usr/lib/git-core/git-credential-cache--daemon.exe /usr/lib/git-core/__git-credential-cache--daemon_orig.exe
$ mv -v /usr/lib/git-core/git-credential-cache.exe /usr/lib/git-core/__git-credential-cache__orig.exe
$ mv -v /usr/bin/git.exe /usr/bin/__git_orig.exe
$ mv -v /usr/lib/git-core/git.exe /usr/lib/git-core/__git_orig.exe

# copy over the hacked files:

cp -v ./src/git-2.33.0/git-credential-cache--daemon.exe /usr/lib/git-core/
cp -v ./src/git-2.33.0/git-credential-cache.exe /usr/lib/git-core/
cp -v ./src/git-2.33.0/git.exe /usr/bin/
cp -v ./src/git-2.33.0/git.exe /usr/lib/git-core/

在这一点上,凭据缓存也开始在MSYS2上为我工作(在有限的时间内缓存密码);它只是在启动时转储了被黑的行:

$ git pull
Password for 'https://user@git.mysite.com':
Permissions on cached credentials socket directory /home/user/.cache/git/credential are too loose, but HACK: going on
Already up to date.

# second pull, password is cached
$ git pull
Already up to date.

有点棘手,但似乎有用。

PS:一个棘手的事情是,我原本替换die只是一个打印到stdout,但这一直失败;事实证明,stdout是用于进程间通信的,为了使之成功,stdout上的答案显然是ok\0,也就是三个字节;因此,解决方案是将通知打印到stderr。


(原来的答案):

虽然没有完全回应这个问题,但这是我能找到的最合适的问题,作为回答:

我在Windows 10的MSYS2下使用git,目前有这样的版本:

$ git --version
git version 2.32.0

我通常只想让git缓存我的密码一段有限的时间(可能10分钟左右),然后忘记它;我还没有看到wincred或其他特定于windows的凭据管理器在这个用例中的使用。

话虽如此,对我来说,有一个“简单的解决方案”-基本上,第一次运行凭据管理器,它是好的;只有在以后的使用中,我才能得到:

$ git push
Password for 'http://user@githost.example.com':
fatal: The permissions on your socket directory are too loose; other
users may be able to read your cached credentials. Consider running:

        chmod 0700 /home/user/.cache/git/credential
fatal: cache daemon did not start:
Enumerating objects: 8, done.
Counting objects: 100% (8/8), done.
...

所以,基本上,解决方案是删除凭据目录-此后,凭据缓存管理器运行,就像第一次一样,并在有限的时间内缓存密码-正如我想要的那样:

$ rm -rf ~/.cache/git/credential


# note below, the very first pull still asks for a password:

$ git pull
Password for 'http://user@githost.example.com':
Already up to date.

# ... but the second pull does not, it uses credentials cache

$ git pull
Already up to date.

对我来说足够好了,我猜:)

编辑:不太好,我有过这样的经历,如果你尝试拉另一个标签,错误返回。

我在一个博客上发现:

这个[git-credential-cache]在Windows系统中不起作用,因为git-credential-cache通过Unix套接字进行通信。

Git for Windows

因为msysgit已经被Git for Windows所取代,所以使用Git for Windows现在是最简单的选择。某些版本的Git for Windows安装程序(例如2.7.4)在安装过程中有一个复选框来启用Git凭据管理器。以下是截图:

还在使用msysgit吗?适用于msysgit 1.8.1及以上版本

在msysgit 1.8.1中添加了wincred helper。使用方法如下:

git config --global credential.helper wincred

对于1.8.1以上版本的msysgit

首先,下载git-credential-winstore并将其安装到git bin目录中。

接下来,确保包含git的目录。cmd在Path环境变量中。默认目录在64位系统上是C:\Program Files (x86)\Git\cmd,在32位系统上是C:\Program Files\Git\cmd。一个简单的测试方法是启动命令提示符并输入git。如果您没有得到git命令列表,那么它没有正确设置。

最后,启动命令提示符并输入:

git config --global credential.helper winstore

或者你可以手动编辑你的.gitconfig文件:

[credential]
    helper = winstore

一旦你完成了这些,你就可以通过Windows凭据管理器来管理你的git凭据,你可以通过Windows控制面板拉出凭据管理器。

我也得到类似的错误,当我试图使用命令“git拉”从主分支。

Error: "git: 'credential-manager' is not a git command. See 'git --help'." 

我执行下面两个命令,问题得到解决。

$ git config --global --unset credential.helper
$ git config credential.helper store

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

git config --global credential.helper wincred

为了让其他人知道这个问题,我在Ubuntu中也遇到了同样的问题(即我的密码没有缓存,尽管已经正确地设置了选项,并且得到了错误git: '凭据-缓存'不是git命令),直到我发现这个功能只在git 1.7.9及以上版本中可用。

Ubuntu的旧版本(Natty;我是一个顽固的Gnome 2用户)回购中的版本是git版本1.7.4.1。我使用以下PPA进行升级: https://launchpad.net/~git-core/+archive/ppa