Skip to content

Commit a8965ab

Browse files
committed
Merge pull request #2277 from mboersma/gitignore-collapse
ref(.gitignore): collapse distributed patterns into root .gitignore
2 parents 2df1938 + e4cff6f commit a8965ab

10 files changed

Lines changed: 20 additions & 25 deletions

File tree

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ pip-log.txt
2525
.tox
2626
nosetests.xml
2727
logger/coverage.out
28+
tests/example-*
2829

2930
# Translations
3031
*.mo
@@ -45,6 +46,21 @@ controller/.secret_key
4546
# deis application logs
4647
logs/
4748

49+
# local binaries and installers
50+
client/dist/
51+
client/makeself/
52+
contrib/bumpver/bumpver
53+
deisctl/deisctl
54+
deisctl/dist/
55+
deisctl/package/
56+
deisctl/makeself/
57+
docs/_build/
58+
docs/docs.zip
59+
logspout/build/
60+
61+
# ctags index
62+
tags
63+
4864
# Misc.
4965
Berksfile.lock
5066
.DS_Store
@@ -60,6 +76,9 @@ Vagrantfile.local
6076
# Local user-data generated from user-data.example
6177
contrib/coreos/user-data
6278

79+
# Local controller settings file
80+
controller/deis/local_settings.py
81+
6382
# EC2 CloudFormation Setup
6483
contrib/ec2/cloudformation.json
6584

client/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

contrib/bumpver/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

controller/deis/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

controller/deis/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
# and production.
323323
# The local_settings.py file should *not* be checked in to version control.
324324
try:
325-
from .local_settings import * # @UnusedWildImport # noqa
325+
from .local_settings import * # noqa
326326
except ImportError:
327327
pass
328328

deisctl/.gitignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

logspout/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

registry/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

tests/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)