]> git.mxchange.org Git - friendica.git/blob - .gitignore
Merge pull request #11679 from Quix0r/rewrites/autotest
[friendica.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.config.php
14 /config/addon.config.php
15 /config/local.ini.php
16 /config/addon.ini.php
17
18 #ignore documentation, it should be newly built
19 /doc/api
20 /doc/cache
21
22 #ignore reports, should be generated with every build
23 report/
24
25 #ignore config files from eclipse, we don't want IDE files in our repository
26 .project
27 .buildpath
28 .externalToolBuilders
29 .settings
30
31 #ignore OSX .DS_Store files
32 .DS_Store
33
34 #ignore NetBeans IDE's private files (at least)
35 /nbproject/private/
36
37 Ignore config files from VSCode
38 /.vscode/
39
40 #ignore smarty cache
41 /view/smarty3/compiled/
42
43 #ignore cache folders
44 /privacy_image_cache/
45 /photo/
46 /proxy/
47 nbproject
48
49 #ignore vagrant dir
50 .vagrant/
51
52 #ignore local folder
53 /local/
54
55 #ignore config files from Visual Studio
56 /.vs/
57 /php_friendica.phpproj
58 /php_friendica.sln
59 /php_friendica.phpproj.user
60
61 #ignore things from transifex-client
62 venv/
63
64 #ignore Composer dependencies
65 /vendor
66 /view/asset
67
68 #ignore config files from JetBrains
69 /.idea
70
71 #ignore addons directory
72 /addons
73 /addon
74
75 #ignore base .htaccess
76 /.htaccess
77
78 #ignore filesystem storage default path
79 /storage
80
81 #Ignore log folder
82 /log
83
84 #Ignore temporary installed phpunit
85 /bin/phpunit
86
87 #Ignore cache file
88 .php_cs.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