Merge branch 'develop' of https://github.com/friendica/friendica into develop
[friendica.git/.git] / .gitignore
1 favicon.*
2 /.htconfig.php
3 /.htpreconfig.php
4 \#*
5 *.log
6 *.out
7 *.version*
8 home.html
9 *~
10 robots.txt
11
12 #ignore local config
13 !/config/local-sample.config.php
14 /config/*.config.php
15 /config/*.ini.php
16
17 #ignore documentation, it should be newly built
18 /doc/api
19 /doc/cache
20
21 #ignore reports, should be generated with every build
22 /report/
23
24 #ignore config files from eclipse, we don't want IDE files in our repository
25 .project
26 .buildpath
27 .externalToolBuilders
28 .settings
29
30 #ignore OSX .DS_Store files
31 .DS_Store
32
33 #ignore NetBeans IDE's private files (at least)
34 /nbproject/private/
35
36 #Ignore config files from VSCode
37 /.vscode/
38
39 #ignore smarty cache
40 /view/smarty3/compiled/
41
42 #ignore cache folders
43 /privacy_image_cache/
44 /photo/
45 /proxy/
46 nbproject
47
48 #ignore vagrant dir
49 .vagrant/
50
51 #ignore local folder
52 /local/
53
54 #ignore config files from Visual Studio
55 /.vs/
56 /php_friendica.phpproj
57 /php_friendica.sln
58 /php_friendica.phpproj.user
59
60 #ignore things from transifex-client
61 venv/
62
63 #ignore Composer dependencies
64 /vendor
65 /view/asset
66
67 #ignore config files from JetBrains
68 /.idea
69
70 #ignore addons directory
71 /addons
72 /addon
73
74 #ignore base .htaccess
75 /.htaccess
76
77 #ignore filesystem storage default path
78 /storage
79
80 #Ignore log folder
81 /log
82
83 #Ignore temporary installed phpunit
84 /bin/phpunit
85
86 #Ignore cache files
87 .php_cs.cache
88 .php-cs-fixer.cache
89
90 #ignore avatar picture cache path
91 /avatar
92
93 #Ignore autotest results
94 autotest-results.xml
95
96 #ignore phpunit result cache
97 tests/.phpunit.result.cache
98
99 #ignore .php_cs (local copy)
100 .php_cs