1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Gitのユーザー名とメールアドレスを設定する方法

Posted at

はじめに

現在会社ではGitLab、個人開発ではGitHubを使用しています。それぞれユーザー名やメールアドレスが異なるため、プロジェクト毎に設定する方法を記載します。

Gitのユーザー名とメールアドレスを設定する方法

全体(global)の設定を行う

コンピュータ内のGit全体のユーザー名/メールアドレスの設定です。
最も使用頻度の高いものをこちらで設定しておきます。

ユーザー名を設定

git config --global [user.name](http://user.name/) "ユーザー名"

メールアドレスを設定

git config --global user.email メールアドレス

プロジェクト毎に設定を行う

まずcdコマンドを使用して設定したいプロジェクトのディレクトリに移動しておきます。
その後、下記コマンドで設定します。

ユーザー名を設定

git config --local user.name "ユーザー名"

メールアドレスを設定

git config --local user.email メールアドレス

最後に

以上、Gitのユーザー名とメールアドレスを設定する方法でした。見ていただきありがとうございました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?