搜尋

首頁  >  問答  >  主體

git怎麼初始化呢?

在github上建了一個項目,本地也有程式碼,本地用git init初始化了一下,請問然後怎麼將本地的程式碼提交到github上呢?

伊谢尔伦伊谢尔伦2792 天前612

全部回覆(4)我來回復

  • 阿神

    阿神2017-05-02 09:26:31

    請看 幫助 https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/

    回覆
    0
  • 迷茫

    迷茫2017-05-02 09:26:31

    點開你在 github 上的項目鏈接,如果是空的,會有詳細步驟

    回覆
    0
  • 滿天的星座

    滿天的星座2017-05-02 09:26:31

    1 本地生成ssh-key: ssh-keygen -t rsa -C "$userEmail"
    2 github帳號上貼上公鑰
    3 本地添加遠端程式庫: git remote add origin git@xxxxx.git
    4 測試是否成功- ->commit一個檔案,然後push,看github上有沒有

    5 以後在此電腦上連接別的github庫時,1,2步驟省略

    回覆
    0
  • 習慣沉默

    習慣沉默2017-05-02 09:26:31

    1 本地生成秘要: $ ssh-keygen -t rsa -C "youremail@example.com"
    2 然後cd .ssh 進入資料夾vim id_rsa.pub 將秘要貼到github 中(位於“Account settings”, 「SSH Keys」頁面)
    3 關聯本地與遠程長褲(注意修改地址):$ git remote add origin git@github.com:michaelliao/learngit.git
    4 $ git push -u origin master
    5 以後直接推送直接使用指令:$ git push origin master

    回覆
    0
  • 取消回覆