如何确定 Windows 的 Git 凭据管理器的版本?
How to determine the version of Git Credential Manager for Windows?
在我的 git 安装中是否有命令或其他方式来确定 Credential Manager 的版本?
运行 git credential-manager version
描述 here.
来自 Git-Credential-Manager
的 GitHub documentation
Assuming the GCM has been installed, using your favorite Windows console (Command Prompt, PowerShell, ConEmu, etc.), use the following command to interact directly with the GCM.
git credential-manager [<command> [<args>]]
因此要显示您可以使用的当前版本
git credential-manager version
如果您使用较新的 git for Windows 版本,其中包含 credential-manager-core 命令是:
git credential-manager-core --version
在我的 git 安装中是否有命令或其他方式来确定 Credential Manager 的版本?
运行 git credential-manager version
描述 here.
来自 Git-Credential-Manager
的 GitHub documentation
Assuming the GCM has been installed, using your favorite Windows console (Command Prompt, PowerShell, ConEmu, etc.), use the following command to interact directly with the GCM.
git credential-manager [<command> [<args>]]
因此要显示您可以使用的当前版本
git credential-manager version
如果您使用较新的 git for Windows 版本,其中包含 credential-manager-core 命令是:
git credential-manager-core --version