diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-11-18 01:39:02 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-11-18 01:39:02 +0100 |
commit | e2e48255187dddd84ee08cbbac91847d7a15c240 (patch) | |
tree | 12ac2753bd91a3fa01bd761643e342031b1d43a5 /.gitignore | |
download | sysrss-e2e48255187dddd84ee08cbbac91847d7a15c240.tar.gz sysrss-e2e48255187dddd84ee08cbbac91847d7a15c240.tar.bz2 sysrss-e2e48255187dddd84ee08cbbac91847d7a15c240.tar.xz |
first commit
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3848fef --- /dev/null +++ b/.gitignore @@ -0,0 +1,60 @@ +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. + + +## Private non-staging workspace +################################## + +/_/ + + +## Temporary and backup files +############################### + +*~ +\#*\# +.\# +*.swp +*.bak + + +## Hidden files +################# + +.* +.*/ +!.gitignore + + +## Distribution +################# + +/dist/archlinux +!/dist/archlinux/*/PKGBUILD +!/dist/archlinux/*/*.install +!/dist/archlinux/*/*.patch + + +## Archives +############# + +*.gz + + +## Built documentation +######################## + +*.info +*.pdf +*.ps +*.dvi + + +## Python +########### + +*.pyc +__pycache__/ + |