カテゴリー:
GitHub
閲覧数:398 配信日:2019-06-21 21:51
鍵に保存されたパスフレーズを変更
毎回パスワード入力することが苦痛なので、「パスワードなし」へ変更する
・最初に Enterキーを押す
・次に 古いパスフレーズを入力する
・次に 新しいパスフレーズを入力する
・最後に もう一度、新しいパスフレーズを入力する
$ ssh-keygen -p
Enter file in which the key is (/c/Users/user/.ssh/id_rsa):
Enter old passphrase:
Key has comment 'user@DESKTOP-XXXX'
Enter new passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved with the new passphrase.
(Windowsならでは)「File name too long」エラー対処
git addコマンドなどで、File name too longというエラーメッセージが出た場合
以下の方法で対処する
管理者としてgit bash(または、コマンドプロンプト)を起動し、以下を実行
これで長いファイル名もGITで取り扱えるようになる
$ git config --system core.longpaths true
(Windowsならでは)改行コードを自動変換しないよう設定
git config --global core.autoCRLF false
「C:\Users\user\.gitconfig」ファイルに下記内容が自動追加される[core]
autoCRLF = false