git--config

1778 ワード


 

Table of Contents

  • 1. ユーザーの設定
  • 1.1. グローバルユーザー
  • 1.1.1. 名前、メールボックス
  • を設定
  • 1.1.2. SSH keyファイル
  • の生成
  • 1.1.3. githubアカウントにkeyを追加
  • 1.1.4. 接続テスト


  • 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を追加する


     
  • は、生成するxxxを対応する経路にコピーする.pubファイルの内容(文字列)
  • githubアカウントにログインし、アイコンをクリックします->Settings->SSH and GPG keys->New SSH key
  • Title任意、Keyにコピーした文字列を貼り付け、確認(パスワード確認が必要かもしれない)
  • .

    1.1.4接続テスト

    ssh -T [email protected]
    
  • 成功のヒント
    Hiあなたのアカウント名!You've successfully authenticated, but GitHub does not provide shell access.
  • 接続エラー
  • Permission denied
  • エラーメッセージ(次のようなもの)
    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