github上傳程式碼

heyjude0919發表於2020-10-05
  • 在linux伺服器上生成公共祕鑰

    • 配置祕鑰:
      • git config --global user.email “you@example.com”
      • git config --global user.name “Your Name”
        如:git config --global user.email “12345679@11.com”
        如:git config --global user.name “thomas”
    • 執行命令ssh-keygen -t rsa -C your_email,如 ssh-keygen -t rsa -C “12345679@11.com”.
    • 一路回車,生成id_rsa 、id_rsa.pub兩個檔案。
    • 使用cat ~/.ssh/id_rsa.pub命令檢視祕鑰。
    • 在github-> settings-> SSH and GPG keys ->new SSH key增加祕鑰。
  • 在github上建立新的 Repositories,同事在Repositories頁面會有類似提示,一次在linux程式碼目錄下執行下面目錄即可
    git init
    git add
    git commit -m “first commit”
    git branch -M master
    git remote add origin git@github.com:abcd / xyz.git
    git push -u origin master

相關文章