我正在尝试通过powershell为我的Github帐户添加Windows凭据。我在powershell中输入以下命令:cmdkey /add:"git:https://github.com" /user:"myusername" /pass:"myauthtoken"它返回错误CMDKEY: The parameter is incorrect.我该怎么补救呢?请注意,当我使用控制面板-〉凭据管理器-〉添加通用凭据通过GUI添加凭据时,上述参数值起作用。
cmdkey /add:"git:https://github.com" /user:"myusername" /pass:"myauthtoken"
CMDKEY: The parameter is incorrect.
von4xj4u1#
根据cmdkey /?的输出:
cmdkey /?
To create generic credentials: The /add switch may be replaced by /generic to create generic credentials
如果我查看一下我的保管库中的通用github凭据,它们的目标名称如下所示:
Target: LegacyGeneric:target=git:https://github.com
因此,我建议尝试以下方法:
cmdkey /generic:LegacyGeneric:target=git:https://github.com /user:"myusername" /pass:"myauthtoken"
1条答案
按热度按时间von4xj4u1#
根据
cmdkey /?
的输出:如果我查看一下我的保管库中的通用github凭据,它们的目标名称如下所示:
因此,我建议尝试以下方法: