Skip to content

Commit 4f07907

Browse files
author
Matthew Fisher
committed
ref(gitignore): clean up old ignores, remove os-specific files
files to be ignored like .DS_Store on OSX should exist in a global .gitignore file, where it is ignored across all repositories. See https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
1 parent 3c2f11f commit 4f07907

1 file changed

Lines changed: 15 additions & 39 deletions

File tree

.gitignore

Lines changed: 15 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
*.py[cod]
22

3-
# C extensions
4-
*.so
5-
63
# Packages
74
*.egg
85
*.egg-info
@@ -17,33 +14,11 @@ develop-eggs
1714
lib
1815
lib64
1916

20-
# Installer logs
21-
pip-log.txt
22-
23-
# Unit test / coverage reports
24-
.coverage
25-
.tox
26-
nosetests.xml
27-
logger/coverage.out
28-
tests/example-*
29-
30-
# Translations
31-
*.mo
32-
33-
# Mr Developer
34-
.mr.developer.cfg
35-
.project
36-
.pydevproject
37-
38-
# Sublime Text droppings
39-
*.sublime-project
40-
*.sublime-workspace
41-
4217
# Deis' config file
4318
controller/deis/local_settings.py
4419
controller/.secret_key
4520

46-
# deis application logs
21+
# application logs
4722
logs/
4823

4924
# local binaries and installers
@@ -58,22 +33,20 @@ docs/_build/
5833
docs/docs.zip
5934
logspout/build/
6035

61-
# ctags index
62-
tags
63-
64-
# Misc.
65-
Berksfile.lock
66-
.DS_Store
36+
# coverage reports
37+
.coverage
38+
coverage.out
6739
htmlcov/
68-
.ruby-version
69-
venv/
70-
.vagrant
71-
Vagrantfile.local
72-
config.rb
73-
*.swp
74-
.bundle
40+
41+
# integration test droppings
42+
tests/example-*
43+
44+
# extra .py droppings from building docs
7545
/__init__.py
7646

47+
# python virtual environments for testing
48+
venv
49+
7750
# Local user-data generated from user-data.example
7851
contrib/coreos/user-data
7952

@@ -85,3 +58,6 @@ contrib/ec2/cloudformation.json
8558

8659
# GCE generated user-data
8760
contrib/gce/gce-user-data
61+
62+
# vagrant being vagrant
63+
.vagrant

0 commit comments

Comments
 (0)