# Laravel 框架默认忽略
/node_modules
/public/hot
/public/storage
/storage/*.key
/storage/app/*
/storage/app/public/*
/storage/framework/*
/storage/logs/*
/bootstrap/cache/*
# 环境配置文件
.env
.env.*
!.env.example
# 编译的视图文件
/resources/views/*.php
# 测试报告
/tests/_output
# 缓存文件
.phpunit.result.cache
Homestead.json
Homestead.yaml
# 开发工具生成的文件
.idea
.vscode
.DS_Store
如果已被跟踪处理方式
git rm -r --cached . # 清除已跟踪的文件
git add .