Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8d98dc8

Browse files
authoredFeb 20, 2019
Clean up gitignores (#4688)
I just got bitten by a file being caught by the .gitignore, which shouldn't have been, and am now pissed off with the .gitignore. I have basically declared bankruptcy on it and started again.
1 parent 86920ac commit 8d98dc8

File tree

3 files changed

+38
-58
lines changed

3 files changed

+38
-58
lines changed
 

‎.gitignore

+30-58
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,36 @@
1-
*.pyc
2-
.*.swp
1+
# filename patterns
32
*~
4-
*.lock
5-
6-
.DS_Store
7-
_trial_temp/
8-
_trial_temp*/
9-
logs/
10-
dbs/
3+
.*.swp
4+
.#*
5+
*.deb
116
*.egg
12-
dist/
13-
docs/build/
147
*.egg-info
15-
pip-wheel-metadata/
16-
17-
cmdclient_config.json
18-
homeserver*.db
19-
homeserver*.log
20-
homeserver*.log.*
21-
homeserver*.pid
22-
/homeserver*.yaml
23-
24-
*.signing.key
25-
*.tls.crt
26-
*.tls.dh
27-
*.tls.key
28-
29-
.coverage*
30-
coverage.*
31-
!.coveragerc
32-
htmlcov
33-
34-
demo/*/*.db
35-
demo/*/*.log
36-
demo/*/*.log.*
37-
demo/*/*.pid
38-
demo/media_store.*
39-
demo/etc
40-
41-
uploads
42-
cache
43-
44-
.idea/
45-
media_store/
46-
8+
*.lock
9+
*.pyc
4710
*.tac
11+
_trial_temp/
12+
_trial_temp*/
4813

49-
build/
50-
venv/
51-
venv*/
52-
*venv/
53-
54-
localhost-800*/
55-
static/client/register/register_config.js
56-
.tox
57-
58-
env/
59-
*.config
14+
# stuff that is likely to exist when you run a server locally
15+
/*.signing.key
16+
/*.tls.crt
17+
/*.tls.key
18+
/uploads
19+
/media_store/
20+
21+
# IDEs
22+
/.idea/
23+
/.ropeproject/
24+
/.vscode/
25+
26+
# build products
27+
/.coverage*
28+
!/.coveragerc
29+
/.tox
30+
/build/
31+
/coverage.*
32+
/dist/
33+
/docs/build/
34+
/htmlcov
35+
/pip-wheel-metadata/
6036

61-
.vscode/
62-
.ropeproject/
63-
*.deb
64-
/debs

‎changelog.d/4688.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Clean up gitignores

‎demo/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.db
2+
*.log
3+
*.log.*
4+
*.pid
5+
6+
/media_store.*
7+
/etc

0 commit comments

Comments
 (0)
This repository has been archived.