在github上建了一個項目,本地也有程式碼,本地用git init初始化了一下,請問然後怎麼將本地的程式碼提交到github上呢?
小伙看你根骨奇佳,潜力无限,来学PHP伐。
請看 幫助 https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
點開你在 github 上的項目鏈接,如果是空的,會有詳細步驟
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步驟省略
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 master5 以後直接推送直接使用指令:$ git push origin master
請看 幫助 https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
點開你在 github 上的項目鏈接,如果是空的,會有詳細步驟
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步驟省略
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