-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
103 lines (86 loc) · 1.48 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# user defined .gitignore
.env
# Docker project generated files to ignore
# if you want to ignore files created by your editor/tools,
# please consider a global .gitignore https://help.github.com/articles/ignoring-files
.vagrant*
bin
docker/docker
.*.swp
a.out
*.orig
build_src
.flymake*
.idea
.DS_Store
docs/_build
docs/_static
docs/_templates
.gopath/
.dotcloud
*.test
bundles/
.hg/
.git/
vendor/pkg/
pyenv
Vagrantfile
#
# .gitignore
#
# Ignore works for the dir the gitignore file resides in.
# To have a global effect affect to all repositories run this command:
# git config --global core.excludesfile ~/.gitignore
# removed .gitattributes and .gitignore when doing git export
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
.scrutinzer.yml export-ignore
.coveralls.io export-ignore
.php_cs export-ignore
phpmd.xml export-ignore
phpunit.xml.dist export-ignore
/tests export-ignore
# Mac OS X Finder and whatnot
.DS_Store
# Windows crap
Thumbs.db
# Netbeans IDE related
nbproject
# Eclipse IDE related
.cache*
.project
.settings*
.buildpath
# PHPStorm IDE related
/.idea
/.buildpath
/.project
/.settings
# Webserver
/.htaccess
# Scriptfiles
*.log
# Subversion
.svn
.svn/entries
# Mercurial / Subversion
.hg
.svn
# PHPUnit
# phpunit.xml
# PHP composer related
composer.lock
vendor
# php-cs-fixer
php-cs-fixer*.txt
# build folders for standard php projects
build/api
build/code-browser
build/coverage
build/logs
build/pdepend
# various files
._*
.~lock.*
*.bak