.gitignore文件可以直接使用https://github.com/github/gitignore
1、在项目中设置忽略文件
(1)将从github上荡下来的对应的.gitignore文件(Swift.gitignore,就是swift项目需要的忽略文件)放到项目根目录,并且改名为.gitignore(去掉‘.‘之前的语言标识字符串)$ mv Swift.gitignore .gitignore
(2)提交一次工程到仓库$ git add .
$ git commit -m "添加项目忽略文件"`
$ git push
时间: 2024-11-25 11:56:39