一、取得设备授权
- 认识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 文件