Laravel 5 - Mercurial recommended .hgignore



使用Laravel 5.x或5.1.x
hgignore文件的基本推荐配置是什么?

从.gitignore中提取这就是我所拥有的:

syntax: glob
.env
.gitignore
.gitattributes
.idea
vendor/
node_modules/
Homestead.yaml
Homestead.json

在网上,我看到了第4版关于/bootstrap/compiled.php的内容
我应该包括/bootstrap/cache吗?

我使用负前瞻来包括空文件夹结构:

## Laravel specific
^.env$
^vendor
## General
.DS_Store$
[Tt]humbs.db$
## Keep these folders, but ignore their content
^bootstrap/cache/(?!.gitignore).+$
^storage/logs/(?!.gitignore).+$
^storage/app/(?!.gitignore).+$
^storage/framework/views/(?!.gitignore).+$
^storage/framework/sessions/(?!.gitignore).+$
^storage/framework/cache/(?!.gitignore).+$

相关内容

  • 没有找到相关文章

最新更新