.gitignore

.gitignore templates for your project repositories.

It is required that the .gitignore file is maintained as project development is carried out to ensure no core framework development files or sensitive information are pushed to git.


Wordpress .gitignore

// .gitignore

#OS FILES
Thumbs.db
.DS_Store
._*

#Netbeans Project
nbproject/

#VS Code 
.vscode/

#PHPStorm
.idea/

#Node
.sass-cache/
node_modules
npm-debug.log

#PHPStorm
.idea/

#Composer
vendor/

#Site files to ignore
src/package-lock.json
public/index.php
public/readme.html
public/license.txt
public/wp-config-sample.php
public/wp-admin/
public/wp-content/uploads/
public/wp-content/plugins/
public/wp-content/languages/
public/wp-content/upgrade/
public/wp-content/themes/project/dist/
public/wp-includes/
public/wp-activate.php
public/wp-blog-header.php
public/wp-settings.php
public/wp-comments-post.php
public/wp-mail.php
public/wp-links-opml.php
public/wp-trackback.php
public/wp-cron.php
public/wp-load.php
public/wp-signup.php
public/wp-config.php
public/wp-login.php
public/xmlrpc.php

Laravel .gitignore

// .gitignore

#OS FILES
Thumbs.db
.DS_Store
._*

#Netbeans Project
nbproject/

#VS Code 
.vscode/

#PHPStorm
.idea/

#Node
.sass-cache/
node_modules
npm-debug.log

#PHPStorm
.idea/

#Composer
vendor/

#Site files to ignore
.env
.phpunit.result.cache
/.vagrant
/public/*
/public/hot
/public/storage
/public/js/app.js
/public/css/app.css
/storage/*.key
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log