oschina创建swift git项目 添加 .gitignore

http://www.cnblogs.com/cqb-learner/p/5894475.html

oschina中新建项目,没有swift. gitignore可选,需要手动下载,修改,添加进项目。
操作方法:
1、从 https://github.com/github/gitignore 获取最新版本的 Swift.gitignore 文件
2、命令行 touch .gitignore创建文件,手动打开项目中.gitignore文件,把swift.gitignore文件中内容粘贴到.gitignore文件中,搜索 Pods/,去掉文件中的# Pods/前的“#”
3、将.gitignore提交到本地库中

添加 .gitignore 文件之后,每次提交时不会将个人的项目设置信息(例如:末次打开的文件,调试断点等)提交到服务器,在团队开发中非常重要
注意:是否知道 .gitignore 是是否有团队开发经验的重要特征

.gitignore为隐藏文件,查看方法,执行完,重新启动Finder
终端执行命令:
显示:
defaults write com.apple.finder AppleShowAllFiles -bool true
隐藏:
defaults write com.apple.finder AppleShowAllFiles -bool false

你可能感兴趣的:(oschina创建swift git项目 添加 .gitignore)