Skip to content

Commit

Permalink
ENH - improved .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Oct 12, 2010
1 parent a14dd54 commit 4bbe9a8
Showing 1 changed file with 68 additions and 15 deletions.
83 changes: 68 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,72 @@
# Editor temporary/working/backup files #
#########################################
.#*
[#]*#
*~
*.o
*$
*.bak
*.diff
*.org
.project
*.rej
.settings/
.*.sw[nop]
.sw[nop]
*.tmp

# Compiled source #
###################
*.a
*.pyc
*.swp
*.pyo
*.com
*.class
*.dll
*.exe
*.o
*.py[ocd]
*.so
*.pyd
.gdb_history
dist
/build
/dist
/doc/build
/doc/cdoc/build
.\#*

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.bz2
*.bzip2
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.tbz2
*.tgz
*.zip

# Python files #
################
build # setup.py working directory
_build # sphinx build directory
dist # setup.py dist directory
doc/build
doc/cdoc/build
*.egg-info # Egg metadata
./.shelf # The shelf plugin uses this dir

# Logs and databases #
######################
*.log
*.egg-info
/numpy/core/__svn_version__.py
/doc/numpy.scipy.org/_build
*.sql
*.sqlite

# OS generated files #
######################
.gdb_history
.DS_Store?
ehthumbs.db
Icon?
Thumbs.db

# Things specific to this project #
###################################
numpy/core/__svn_version__.py
doc/numpy.scipy.org/_build

0 comments on commit 4bbe9a8

Please sign in to comment.