0
2

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 5 years have passed since last update.

【Git】 git configに関するメモ

Last updated at Posted at 2019-12-02

今までのユーザー情報は会社用のGitLabアカウントだった。

先日GitHubで個人アカウントとリンクしようとし、別のフォルダで

$ git config --global user.name
$ git config --global user.email

と設定してしまったので、GitLabに個人アカウントが侵食されてしまっていた。

個人用GitHubアカウントで使うフォルダには

$ git config --local user.name
$ git config --local user.email

のローカルで設定した。

git configが設定できたか確認するには、
$ git config user.name
$ git config user.email

関連記事 【GitHub】ローカル環境にあるフォルダをリモートリポジトリにアップロードする際に詰まった話

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?