1) 首先要添加或者创建一个.gitignore文件,可使用以下代码创建(不包括$)
$touch .gitignore
2)打开文件
$open .gitignore
3)添加需要被忽略的文件,这是一个.gitignore配置文件
这个网上很多, 找一个拷贝到.gitignore文件内。 这是在github上面的gitignore文件 github.com/github/gitignore/blob/master/Objective-C.gitignore
4)若没有生效,使用以下代码删除当前缓存
$ git rm --cached xxx.project/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate
$ git commit -m"add file to .ignore file"
$ git push
网友评论