git--config
1778 ワード
Table of Contents
1ユーザーの設定
1.1グローバルユーザー
1.1.1名前、メールボックスの設定
git config --global user.name " "
git config --global user.email " "
1.1.2 SSHキーファイルの生成
途中で車に戻り、デフォルト値を使用すればいいです.
ssh-keygen -t rsa -C " "
1.1.3 githubアカウントにkeyを追加する
1.1.4接続テスト
ssh -T [email protected]
Hiあなたのアカウント名!You've successfully authenticated, but GitHub does not provide shell access.
Permissions 0670 for 'home/12131.ssh/idrsa' are too open. It is recommended that your private key files are NOT accessible by others. This private key will be ignored. Load key "home/12131.ssh/idrsa": bad permissions Permission denied (publickey).
chmod 755 ~/.ssh/
chmod 600 ~/.ssh/id_rsa ~/.ssh/id_rsa.pub
chmod 644 ~/.ssh/known_hosts
Created:2019-12-10火曜日16:22
Validate