一.下载
地址:https://desktop.github.com/
二.add、clone、create 一个本地库
三.配置.gitignore的忽略文件
1.cd在仓库目录下
2.创建.gitignore文件
指令 vim .gitignore
3.添加忽略的文件
如:xcuserdata
xx/xx 某个文件夹下的文件
注意:忽略多个文件或文件夹 需要换行
4.用github destktop提交到远程仓库即可
5.若忽略的文件已提交到远程仓库,并想删除。(洁癖症)
(1)终端执行
git rm -r --cached xx(要删除的文件名)
(2)终端执行
git push
四、提交到本地仓库,再推到远程仓库
若提交时出现:
Authentication failed. You may not have permission to access the repository or the repository may have been archived. Open options and verify that you’re signed in with an account that has permission to access this repository.
则在偏好设置设置中退出,重新登录即可,或者更换新的账号。