ドキュメントには頻繁に更新が加えられ、その都度公開されています。本ページの翻訳はまだ未完成な部分があることをご了承ください。最新の情報については、英語のドキュメンテーションをご参照ください。本ページの翻訳に問題がある場合はこちらまでご連絡ください。

このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2020-11-12. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 パフォーマンスの向上、セキュリティの改善、新機能のためには、最新バージョンのGitHub Enterpriseにアップグレードしてください。 アップグレードに関する支援については、GitHub Enterprise supportに連絡してください。

Updating credentials from the macOS Keychain

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."

キーチェーンアクセスを介して認証情報を更新する

  1. Click on the Spotlight icon (magnifying glass) on the right side of the menu bar. Type Keychain access then press the Enter key to launch the app.
    スポットライト検索バー
  2. キーチェーン Access で、[hostname] を探してください。
  3. [hostname] の「internet password」エントリを見つけてください。
  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.

参考リンク