美文网首页
忽略文件

忽略文件

作者: 东方奇迹 | 来源:发表于2022-06-17 16:33 被阅读0次

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

## User settings
xcuserdata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3

## Obj-C/Swift specific
*.hmap

## App packaging
*.ipa
*.dSYM.zip
*.dSYM

# 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/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# 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://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/

相关文章

  • Git Os创建项目

    先忽略再add,忽略文件参考原有的app忽略文件

  • Android Studio SVN使用时忽略的文件

    需要忽略的文件 其实忽略通常遵循以下原则 系统自动生成文件忽略 本地配置文件忽略 第三方依赖忽略在Android ...

  • Android Studio 设置忽略文件,上传项目到码云

    为了使设置的忽略文件有效,要先设置忽略文件,再关联项目 设置忽略文件 设置忽略文件的两种方式: 在项目的.idea...

  • 忽略文件

    一般我们总会有些文件无需纳入 Git 的管理,也不希望它们总出现在未跟踪文件列表。 通常都是些自动生成的文件,比如...

  • 忽略文件

    在项目文件夹里建立一个.gitignore将.env(要忽略的)名写入即可打开命令行创建文件touch .giti...

  • 忽略文件

  • gitignore忽略文件

    项目中已有 gitignore忽略文件 想要再修改 gitignore忽略文件,修改的内容是失效的,在填写忽略文件...

  • git设置忽略文件

    首先来看一下忽略文件的正则: 忽略.json文件夹及文件夹下文件.json 忽略以.xml结尾的文件*.xml 忽...

  • .gitignore 规则写法

    表示忽略Library文件夹但是不忽略Library文件夹下的.asset结尾的文件。需要注意的是,忽略的文件夹一...

  • git pull 临时 时候忽略 文件

    pull时候忽略{filename}这个文件 pull时候取消忽略xxx这个文件

网友评论

      本文标题:忽略文件

      本文链接:https://www.haomeiwen.com/subject/emlhvrtx.html