在laravel项目中怎么使用.gitignore
如果我们不需要把代码提交到git仓库。那么我们需要在”.gitignore”中过滤该代码。
例如我有这些代码
(use "git add <file>..." to include in what will be committed)
.env
.env.example
.gitignore
document.md
document.mdown
public/
storage/
vendor/
假设我要过滤 .env vendor 等,那么我们需要在.gitignore中填写如下信息
.env
/public/uploads
/vendor
/storage/*.key
填写之后保存起来。再看我们的文件列表,就少了很多。
然后在git add .gitignore ; git commit ; git push 完成提交。
后边在安装该代码的时候直接使用composer install update 等相关操作完成配置,