認証情報を保存する方法
一定時間メモリーに記憶する
一定時間メモリーに記憶させるためには以下のコマンドを実行します。
ターミナル
git config --global credential.helper cache --timeout 任意の秒数
デフォルトでは15分間記憶されます。
テキストファイルとして保存する
テキストファイルとして保存するには以下のコマンドを実行します。
ターミナル
git config --global credential.helper store --file 任意のファイルパス
デフォルトでは~/.git-credentials
に保存されます。
OSのキーチェーンに保存する
OSのキーチェーンに保存するには以下のコマンドを実行します。
- Macの場合
ターミナル
git config --global credential.helper osxkeychain
- Windowsの場合
ターミナル
git config --global credential.helper wincred