微擎项目中的 .gitignore 文件

维护微擎项目时,由于庞大的源码体积,将其纳入 git 会遇到困难。因此,需要一份 .gitignore 文件来指定忽略的文件夹。本文提供了官方开源的 .gitignore 文件,供大家参考。

.project
.metadata
*.tmp
local.properties
.idea/**/*

data/**/*
!data/**/db-1.x.php
attachment/**/*
!attachment/images/global/**/*
addons/**/*
framework/builtin/core/module.cer
/.env
/.php_cs.cache
登录后复制

此文件包含以下内容:

  • 通用忽略项: .project, .metadata, .tmp, local.properties, .idea 目录(ide 相关文件)
  • 数据目录忽略项: data 目录,但排除 db-1.x.php 数据库文件
  • 附件目录忽略项: attachment 目录,但排除 global 子目录中的图像
  • 插件目录忽略项: addons 目录
  • 框架忽略项: framework/builtin/core/module.cer 认证文件
  • 环境变量忽略项: .env 环境变量文件
  • php 代码风格缓存忽略项: .php_cs.cache php 代码风格缓存文件

使用此 .gitignore 文件,可以有效减小微擎项目 git 仓库中的文件体积,避免因源码过大而出现问题。

以上就是微擎项目Git管理:如何高效利用.gitignore文件忽略不必要的文件?的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部