Last active
August 10, 2016 22:00
-
-
Save ManUtopiK/412f340951490e2e2f70 to your computer and use it in GitHub Desktop.
.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### Uncomment next line in case you must NOT version this .gitignore file : | |
#/.gitignore | |
#### Composer related | |
/vendor/* | |
/composer.phar | |
/composer | |
## Dependency directory | |
## Commenting this out is preferred by some people, see | |
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git | |
node_modules | |
#### Applicative-cache files | |
*.cache | |
cache/* | |
.npm | |
#### Log files | |
*.log | |
logs/* | |
npm-debug.log* | |
#### Temp files | |
*.tmp | |
tmp/ | |
~* | |
*~ | |
._* | |
#### Dev files | |
## Hint : prefix your dev files/folders by "gign_" (stands for Git IGNore) | |
phpinfo.php | |
/.phpunit/* | |
#phpunit.xml | |
gign_* | |
*.bk | |
*.old | |
#### Version Control | |
/.svn/ | |
/.gitattributes | |
#### These files in the projet root path should be ignored IN MOST OF CASE : | |
/*.7z | |
/*.bz2 | |
/*.gz | |
/*.rar | |
/*.tar | |
/*.tgz | |
/*.zip | |
/*.sql | |
/*.csv | |
/LICENSE | |
#### IDE files | |
## JetBrains IDEs | |
.idea* | |
*.ipr | |
*.iws | |
*.iml | |
## NetBeans | |
/nbproject/ | |
## Eclipse, ZendStudio | |
/.buildpath | |
/.cache | |
/.metadata | |
/.project | |
/.settings | |
## Sublime text | |
*.sublime-project | |
*.sublime-workspace | |
## Others | |
/atlassian* | |
/sitemap | |
*.scc | |
.externalToolBuilders | |
.vimrc | |
local.properties | |
#### Generated by OS | |
## Windows cache | |
desktop.ini | |
Thumbs.db | |
## Windows shortcuts | |
*.lnk | |
## Windows Bin used on file shares | |
$RECYCLE.BIN/ | |
## MacOS | |
.DS_Store | |
__MACOSX/ | |
.AppleDouble | |
.LSOverride | |
#### Exception on htaccess. You can also create a blank .gitkeep file to version empty folders. | |
!.gitkeep | |
!.htaccess |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment