7
6

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 credentialの使い方

Posted at

新しい環境でgitを使い始める際に、git-credentialの使い方をいつも調べているのでメモ。

git-credentialについて

githubで多段階認証などを設定していると、githubへのアクセスを行うアプリケーションごとにアクセストークンを発行し、パスワードの代わりとしなければならない。
パスワードやアクセストークンを覚えるのは大変だし、毎回入力するのもたるいよねってことで、gitが一度入力した認証情報を覚えて次回以降は自動で入力してくれる機能がgit-credentialである。

利用できるgit-credential-helperの確認方法

以下のコマンドによって、利用可能なgit-credential-helperを一覧できる。

windowsの場合
git help -a | findstr credential-
Mac,Linuxの場合
git help -a | grep credential-

git-credentialを利用する

以下のコマンドによって、利用するgit-credential-helperを設定する。

git config --global credential.helper {helper name}

参考: https://mistymagich.wordpress.com/2013/10/07/git-credential-helper%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6http%E8%B6%8A%E3%81%97%E3%81%A7%E8%AA%8D%E8%A8%BC%E3%81%8C%E3%81%8B%E3%81%8B%E3%81%A3%E3%81%A6%E3%81%84%E3%82%8B%E3%83%AA%E3%83%9D%E3%82%B8/

7
6
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
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?