Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6657827

Browse files
Enhance .gitignore to exclude common OS and log files (laravel#6619)
* refactor(gitignore): Update .gitignore to exclude OS-generated and log files * Update .gitignore --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent 1c02745 commit 6657827

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

.gitignore

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1+
*.log
2+
.DS_Store
3+
.env
4+
.env.backup
5+
.env.production
6+
.phpactor.json
7+
.phpunit.result.cache
8+
/.fleet
9+
/.idea
10+
/.nova
111
/.phpunit.cache
12+
/.vscode
13+
/.zed
14+
/auth.json
215
/node_modules
316
/public/build
417
/public/hot
518
/public/storage
619
/storage/*.key
720
/storage/pail
821
/vendor
9-
.env
10-
.env.backup
11-
.env.production
12-
.phpactor.json
13-
.phpunit.result.cache
1422
Homestead.json
1523
Homestead.yaml
1624
npm-debug.log
25+
Thumbs.db
1726
yarn-error.log
18-
/auth.json
19-
/.fleet
20-
/.idea
21-
/.nova
22-
/.vscode
23-
/.zed

0 commit comments

Comments
 (0)