Git 用于 Windows 无提示安装 "Credential Manager"
Git for Windows silent installation without "Credential Manager"
我想使用命令行安装 git(例如 Git-2.14.1-64-bit.exe)credential.manager .
我试图在 https://github.com/git-for-windows/build-extra/blob/master/installer/install.iss 中找到选项。
关于如何使用标志或环境变量执行此操作的任何建议?
基于ReplayChoice
function and its use in the InitializeWizard
event function,这个命令行开关应该做:
/o:UseCredentialManager=Disabled
(或 Enabled
以外的任何其他值)
我想使用命令行安装 git(例如 Git-2.14.1-64-bit.exe)credential.manager .
我试图在 https://github.com/git-for-windows/build-extra/blob/master/installer/install.iss 中找到选项。
关于如何使用标志或环境变量执行此操作的任何建议?
基于ReplayChoice
function and its use in the InitializeWizard
event function,这个命令行开关应该做:
/o:UseCredentialManager=Disabled
(或 Enabled
以外的任何其他值)