GitとGithubのバインドとGithubへのアップロード

2009 ワード

GitとGithubのバインドとGithubへのアップロード
  • Githubアカウントを申請し、Repositoryを作成します.ps:Initlalize this repository with a READMEをチェック
  • ダウンロードインストールGit、一路デフォルト
  • 構成Git
  • ssh-keygen–t rsa–C「メールアドレス」を入力し、
  • に戻る
  • が車に戻ると、鍵を保存する場所を入力し、デフォルトのアドレス
  • を使用して直接車に戻る行が表示されます.
  • が車に戻った後、パスワードの設定を提示し、設定せずに2回車に戻ると、鍵は
  • を生成する.
  • グローバル検索id_rsa.pub、手帳を使用して表示し、すべて選択して
  • をコピーします.
  • ブラウザはGithub->Settings->ssh and GPG keys->add sshの名前を任意に入力し、内容を貼り付けると
  • になります.
  • 関連付けが成功したかどうかを確認する
  • ssh –T [email protected]
      [email protected]:XXX/XXX.git   ,       
    
      “`
           : 
    
  • ユーザー名およびメールボックス
  • の構成
    Warning: Permanently added 'github.com,207.97.227.239' (RSA) to the list of known hosts.
    
      Hi findingsea! You've successfully authenticated, but GitHub does not provide shell access. 
    
    ```
    
  • アップロードが必要なフォルダ->右クリック->Git Bash
    
    git config –global user.name “   ”
    
    git config –global user.email “  ”
    
    .本当にローカル倉庫からGitHubにアップロードし始めました
    
    git init
    
    git add . //      
    
    git commit -m ‘java    ‘
    
    git commit          ,        
    
    -m       ,    ,      GitHub ,                ,     'java    '
    
  • エラーリファレンスの概要:
    git push origin masterと入力した場合
    エラーメッセージ:error:failed to push som refs to.......
    解決策は次のとおりです.
    1、git pull origin master//リモートサーバgithub上のファイルを引く
    2、git push origin masterを再入力する
    3、fatal:Couldn’t find remote ref masterまたはfatal:‘origin’does not appear to be a git repositoryおよびfatal:Could not read from remote repositoryが発生した場合.
    4、再入力が必要[email protected]:quantmod/JavaCrawl.git
    参照ドキュメント:
    インストールリファレンス
    リファレンスのアップロード
    エラーメッセージ