我的 laravel 种子文件夹被 git 忽略 如何解决和避免

问题描述 投票:0回答:1

我有 modules 我的Laravel项目中的文件夹.

和我的子包项目在那里

my laravel seeds folders ignored by git how to resolve and avoid

我的Laravel父项目使用它们来工作

similar to vendor how can you create sub projects in laravel

模块文件夹中的项目被他的主项目gitignored。

laravel create vendor project

模块文件夹中的项目连接到自己的git仓库。

这些项目有 seedsfactories 当我在父体中运行composer安装时,需要文件夹。

seeds and factories didnt sync with git to repo

seedsfactories 是空的, 而且不与git同步, 当其他开发者fetchclone父项目需要它们的时候.

我怎样才能在那里添加Laravel文档以避免这个动作.

在那里创建一个文本文件是真的吗?

laravel git github module gitignore
1个回答
2
投票

Git不会提交空文件夹. 通常的解决方案是添加.gitkeep作为空文本文件.

© www.soinside.com 2019 - 2024. All rights reserved.