diff options
author | Chris Wanstrath <chris@ozmm.org> | 2012-04-18 11:40:44 -0700 |
---|---|---|
committer | Chris Wanstrath <chris@ozmm.org> | 2012-04-18 11:40:44 -0700 |
commit | 33f4cd5d715c77081c7888a1d1aaf1faad4fb31e (patch) | |
tree | f8b3ea113034f1277b09f627322db6e6c3b79ed2 | |
parent | 07a862293f1e1682b7bd15313c20fa455a58ca42 (diff) | |
parent | 67d649e1531636fd747daae6830a6fb104bb8804 (diff) | |
download | gitignore-33f4cd5d715c77081c7888a1d1aaf1faad4fb31e.tar.gz gitignore-33f4cd5d715c77081c7888a1d1aaf1faad4fb31e.zip |
Merge pull request #291 from matheussl/master
Add ignore extensions for Python and SublimeText
-rw-r--r-- | Global/SublimeText.gitignore | 2 | ||||
-rw-r--r-- | Python.gitignore | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Global/SublimeText.gitignore b/Global/SublimeText.gitignore index 6c615f81..bb05773d 100644 --- a/Global/SublimeText.gitignore +++ b/Global/SublimeText.gitignore @@ -1,3 +1,3 @@ - # SublimeText project files /*.sublime-project +*.sublime-workspace diff --git a/Python.gitignore b/Python.gitignore index a6cc625e..f76ed740 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,4 +1,7 @@ -*.py[co] +*.py[cod] + +# C extensions +*.so # Packages *.egg @@ -12,6 +15,8 @@ var sdist develop-eggs .installed.cfg +lib +lib64 # Installer logs pip-log.txt @@ -26,3 +31,4 @@ nosetests.xml #Mr Developer .mr.developer.cfg + |