一、取得裝置授權
- 認識SSH
- 在 Mac 上生成 SSH Key:ssh-keygen -t rsa
- 在 GitHub 上新增 SSH Key 並貼上從 Mac 拿到的 id_rsa.pub 公鑰
- 在 Mac 上驗證:ssh -T git@github.com
二、提交程式碼
- git clone get@github.com:xxx/xxx.git
- git status
- git add [your files]
- git commit -m [your comment]
- git push origin master
三、忽略提交檔案
- 建立一個 .gitignore 檔案
- 編輯 .gitignore 並將要忽略提交的檔名寫在 裡面
- git status 檢查
- 提交 .gitignore 檔案