Skip to content

Commit 615a808

Browse files
committed
And the tweaking continues
1 parent 48b876c commit 615a808

2 files changed

Lines changed: 135 additions & 1 deletion

File tree

admin/previous-gitignore

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
#-------------------------
2+
# Operating Specific Junk Files
3+
#-------------------------
4+
5+
# OS X
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# OS X Thumbnails
11+
._*
12+
13+
# Windows image file caches
14+
Thumbs.db
15+
ehthumbs.db
16+
Desktop.ini
17+
18+
# Recycle Bin used on file shares
19+
$RECYCLE.BIN/
20+
21+
# Windows Installer files
22+
*.cab
23+
*.msi
24+
*.msm
25+
*.msp
26+
27+
# Windows shortcuts
28+
*.lnk
29+
30+
# Linux
31+
*~
32+
33+
# KDE directory preferences
34+
.directory
35+
36+
# Linux trash folder which might appear on any partition or disk
37+
.Trash-*
38+
39+
#-------------------------
40+
# Environment Files
41+
#-------------------------
42+
# These should never be under version control,
43+
# as it poses a security risk.
44+
.env
45+
.vagrant
46+
application/.env
47+
Vagrantfile
48+
49+
#-------------------------
50+
# Temporary Files
51+
#-------------------------
52+
writable/cache/*
53+
!writable/cache/index.html
54+
!writable/cache/.htaccess
55+
56+
writable/logs/*
57+
!writable/logs/index.html
58+
!writable/logs/.htaccess
59+
60+
writable/session/*
61+
!writable/session/index.html
62+
!writable/session/.htaccess
63+
64+
writable/uploads/*
65+
!writable/uploads/index.html
66+
!writable/uploads/.htaccess
67+
68+
writable/debugbar/*
69+
70+
application/Database/Migrations/2*
71+
72+
php_errors.log
73+
74+
#-------------------------
75+
# User Guide Temp Files
76+
#-------------------------
77+
user_guide_src/build/*
78+
user_guide_src/cilexer/build/*
79+
user_guide_src/cilexer/dist/*
80+
user_guide_src/cilexer/pycilexer.egg-info/*
81+
82+
#-------------------------
83+
# Test Files
84+
#-------------------------
85+
tests/coverage*
86+
87+
# Don't save phpunit under version control.
88+
phpunit
89+
90+
#-------------------------
91+
# Composer
92+
#-------------------------
93+
vendor/
94+
composer.lock
95+
96+
#-------------------------
97+
# IDE / Development Files
98+
#-------------------------
99+
100+
# Modules Testing
101+
_modules/*
102+
103+
# phpenv local config
104+
.php-version
105+
106+
# Jetbrains editors (PHPStorm, etc)
107+
.idea/
108+
*.iml
109+
110+
# Netbeans
111+
nbproject/
112+
build/
113+
nbbuild/
114+
dist/
115+
nbdist/
116+
nbactions.xml
117+
nb-configuration.xml
118+
.nb-gradle/
119+
120+
# Sublime Text
121+
*.tmlanguage.cache
122+
*.tmPreferences.cache
123+
*.stTheme.cache
124+
*.sublime-workspace
125+
*.sublime-project
126+
.phpintel
127+
/api/
128+
129+
# Visual Studio Code
130+
.vscode/
131+
132+
/results/
133+
/phpunit*.xml
134+

admin/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version=4
1111
qualifier=
1212

1313
branch=release-
14-
devonly='.github/* admin/* build/* contributing/* user_guide_src/* CODE_OF_CONDUCT.md \
14+
devonly='.github/* admin/ build/ contributing/ user_guide_src/ CODE_OF_CONDUCT.md \
1515
DCO.txt PULL_REQUEST_TEMPLATE.md'
1616
which=release
1717

0 commit comments

Comments
 (0)