0
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

個人用と仕事用でGitアカウントを使い分けたい

間違って個人のアカウントで社内のリポジトリにコミット・プッシュしてしまった・・・なんてことにならないためにGitアカウントを設定する。

メインのGitアカウントに設定

全てのリポジトリにGitアカウントが設定される。

$ git config --global user.name "ユーザー名"
$ git config --global user.email "メールアドレス"

~/.gitconfigへGitアカウントが設定される。

プロジェクト毎にGitアカウントを設定

リポジトリ毎にGitアカウントを設定する。
メインのGitアカウントを設定していても、こちらの設定が優先される。

$ git config --local user.name "ユーザー名"
$ git config --local user.email "メールアドレス"

プロジェクトの./.git/configに設定する。

0
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
0
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?