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

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

コミットメールアドレスを設定する

GitHub Enterprise Serverインスタンス とコンピュータ上でコミットを作成するために使用するメールアドレスを設定できます。

コミットメールアドレスについて

GitHub uses your commit email address to associate commits with your account on GitHub Enterprise Serverインスタンス. コマンドラインからプッシュするコミットや、WebベースのGit操作に関連づけられるメールアドレスは選択できます。

For web-based Git operations, you can set your commit email address on GitHub Enterprise Serverインスタンス. コマンドラインからプッシュするコミットについては、Git のコミットメールアドレスを設定できます。

GitHub Enterprise Server 上のコミットメールアドレスを変更した後、新規メールアドレスは、今後のウェブベースの Git オペレーションのすべてで表示されます。 コミットメールアドレスを変更する前のコミットは、変更前のメールアドレスに関連付けられたままとなります。

To ensure that commits are attributed to you and appear in your contributions graph, use an email address that is connected to your account on GitHub Enterprise Serverインスタンス. 詳しい情� �については、「GitHub アカウントにメールアドレスを追� する」を参照してく� さい。

GitHub のコミットメールアドレスを設定する

  1. 任意のページの右上で、プロフィール画像をクリックし、続いてSettings(設定)をクリックしてく� さい。

    ユーザバーの [Settings(設定)] アイコン

  2. 左のサイドバーでEmails(メール)をクリックしてく� さい。 メールタブ

  3. "Add email address(メールアドレスの追� )"でメールアドレスを入力してAdd(追� )をクリックしてく� さい。 Email addition button

  4. "Primary email address(プライマリメールアドレス)"リストで、WebベースのGit操作と関連づけたいメールアドレスを選択してく� さい。 プライマリメールアドレスの選択

Git のコミットメールアドレスを設定する

git configコマンドを使用して、Git コミットに関連付けられているメールアドレスを変更できます。 設定した新しいメールアドレスは、コマンドラインから GitHub Enterprise Serverインスタンス にプッシュするこれからのコミットに表示されます。 コミットメールアドレスを変更する前のコミットは、ま� 過去のメールアドレスに関連付けられます。

コンピュータにあるすべてのリポジトリ用にメールアドレスを設定する

  1. ターミナルターミナルGit Bashを開いてく� さい。
  2. Gitでメールアドレスを設定してく� さい。 You can use any email address.
    $ git config --global user.email "email@example.com"
  3. Git で正しくメールアドレスが設定されたことを確認してく� さい。
    $ git config --global user.email
    email@example.com
  4. Add the email address to your account on GitHub Enterprise Server, so that your commits are attributed to you and appear in your contributions graph. 詳しい情� �については「GitHubアカウントへのメールアドレスの追� 」を参照してく� さい。

単一リポジトリ用にメールアドレスを設定する

GitHub Enterprise Server uses the email address set in your local Git configuration to associate commits pushed from the command line with your account on GitHub Enterprise Serverインスタンス.

単一のリポジトリで作成するコミットに関連するメールアドレスを変更できます。 This will override your global Git configuration settings in this one repository, but will not affect any other repositories.

  1. ターミナルターミナルGit Bashを開いてく� さい。
  2. 現在のワーキングディレクトリを Git コミットと関連付けたメールアドレスを設定したいローカルリポジトリに変更します。
  3. Gitでメールアドレスを設定してく� さい。 You can use any email address.
    $ git config user.email "email@example.com"
  4. Git で正しくメールアドレスが設定されたことを確認してく� さい。
    $ git config user.email
    email@example.com
  5. Add the email address to your account on GitHub Enterprise Server, so that your commits are attributed to you and appear in your contributions graph. 詳しい情� �については「GitHubアカウントへのメールアドレスの追� 」を参照してく� さい。