我们经常发布文档更新,此页面的翻译可能仍在进行中。有关最新信息,请访问英文文档。如果此页面上的翻译有问题,请告诉我们

此版本的 GitHub Enterprise 已停止服务 2020-11-12. 即使针对重大安全问题,也不会发布补丁。 要获得更好的性能、改进的安全性和新功能,请升级到 GitHub Enterprise 的最新版本。 如需升级方面的帮助,请联系 GitHub Enterprise 支持

更新 OSX 密钥链中的凭据

You'll need to update your saved credentials in the git-credential-osxkeychain helper if you change your username, password, or personal access token on GitHub Enterprise Server.

本文内容

When Git prompts you for your password, enter your personal access token (PAT) instead. Password-based authentication for Git is deprecated, and using a PAT is more secure. For more information, see "Creating a personal access token."

通过 Keychain Access 更新凭据

  1. 单击菜单栏右侧的 Spotlight 图标(放大镜)。 键入 Keychain access,然后按 Enter 键启动应用程序。
    Spotlight 搜索栏
  2. 在 Keychain Access 中,搜索 [hostname]
  3. 查找 [hostname] 的“互联网密码”条目。
  4. 相应地编辑或删除该条目。

通过命令行删除凭据

Through the command line, you can use the credential helper directly to erase the keychain entry.

$ git credential-osxkeychain erase
host=hostname
protocol=https
> [Press Return]

如果成功,则不会打印出任何内容。 To test that it works, try and clone a repository from your GitHub Enterprise Server instance. If you are prompted for a password, the keychain entry was deleted.

延伸阅读