Info
#

2025/06/23 (Mon) 07:58:31 GMT+0000 (UTC)
Type: PC | System: Unknown | Browser: Unknown ... More

Menu
.
+
#
  • @ /note/git/post-SetupProfile
Content
.
+
#

Post: Nekoformi
Date: 2024/04/15

Setup Profile

Gitの操作(コミット等)にはユーザー名とメールアドレスの登録が必要になります。

Bash
+
#
1:
2:
3:
4:
5:
6:
7:
// 全体に設定する場合 $ git config --global user.name ユーザー名 $ git config --global user.email メールアドレス // 特定のリポジトリーに設定する場合 $ git config --local user.name ユーザー名 $ git config --local user.email メールアドレス

※コミットの記録に必要な情報であり、何かしらのサービスに登録されるわけではありません。