在 Mac 上如何向 GitHub 提交程式碼?

omgdog發表於2018-07-22

一、取得裝置授權

  1. 認識SSH
  2. 在 Mac 上生成 SSH Key:ssh-keygen -t rsa
  3. 在 GitHub 上新增 SSH Key 並貼上從 Mac 拿到的 id_rsa.pub 公鑰
  4. 在 Mac 上驗證:ssh -T git@github.com

二、提交程式碼

  1. git clone get@github.com:xxx/xxx.git
  2. git status
  3. git add [your files]
  4. git commit -m [your comment]
  5. git push origin master

三、忽略提交檔案

  1. 建立一個 .gitignore 檔案
  2. 編輯 .gitignore 並將要忽略提交的檔名寫在 裡面
  3. git status 檢查
  4. 提交 .gitignore 檔案

相關文章