ios忽略文件.gitignore

ios-xcode-添加-oc的忽略文件。

 第一步 cd 到项目的根目录下,例如:
 打开终端,cd项目路径( 将ExtensiveCompany文件拖入到终端),回车。
ios忽略文件.gitignore_第1张图片
Snip20160427_3.png
 第二步:touch .gitignore,回车。
 第三步:open .gitignore,回车。
 第四步:将下面文件拷贝到.gitignore,保存。附上最新的github忽略文件网址[Markdown]https://github.com/github/gitignore

  # Xcode
  #
  # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

  ## Build generated
  build/
  DerivedData/

  ## Various settings
  *.pbxuser
  !default.pbxuser
  *.mode1v3
  !default.mode1v3
  *.mode2v3
  !default.mode2v3
  *.perspectivev3
  !default.perspectivev3
  xcuserdata/

  ## Other
  *.moved-aside
  *.xcuserstate

   ## Obj-C/Swift specific
   *.hmap
   *.ipa

   # CocoaPods
   #
   # We recommend against adding the Pods directory to your .gitignore. However
   # you should judge for yourself, the pros and cons are mentioned at:
   # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
   #
   # Pods/

   # Carthage
   #
   # Add this line if you want to avoid checking in source code from Carthage dependencies.
   # Carthage/Checkouts

   Carthage/Build

   # fastlane
   #
   # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 
   # screenshots whenever they are needed.
   # For more information about the recommended setup visit:
   # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md

  fastlane/report.xml
  fastlane/screenshots

你可能感兴趣的:(ios忽略文件.gitignore)