gh auth setup-git

gh auth setup-git [flags]

此命令配置 git 以使用 GitHub CLI 作为凭据助手。有关 git 凭据助手的更多信息,请参考:https://git.js.cn/docs/gitcredentials。

默认情况下,GitHub CLI 将被设置为所有已认证主机的凭据助手。如果没有已认证主机,该命令将失败并显示错误。

或者,使用 --hostname 标志来指定要配置的单个主机。如果主机未经身份验证,该命令将失败并显示错误。

选项

-f, --force <--hostname>
即使主机未知,也要强制设置。必须与 --hostname 一起使用
-h, --hostname <string>
要为其配置 git 的主机名

示例

# Configure git to use GitHub CLI as the credential helper for all authenticated hosts
$ gh auth setup-git

# Configure git to use GitHub CLI as the credential helper for enterprise.internal host
$ gh auth setup-git --hostname enterprise.internal

另请参阅