From beee2a343c54aa8c3a28e7377254d4c4c71de24d Mon Sep 17 00:00:00 2001
From: Eric Schrijver <eric@ericschrijver.nl>
Date: Mon, 7 Apr 2014 18:31:22 +0200
Subject: [PATCH] ignore pdf unless forced

---
 .gitignore | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 74 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..cd3b834
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,74 @@
+# OSP Open Source Publishing .gitignore #
+# Geared towards doing graphic design with Free Software
+# You can add this to a file ~/.gitignore_global
+# and then run: git config --global core.excludesfile ~/.gitignore_global
+# cf https://help.github.com/articles/ignoring-files
+
+*.pdf
+
+# Scribus autosave #
+*.autosave
+
+# LibreOffice Lock #
+.~lock.*
+
+# IDE / Editor files #
+*~
+*.kate-swp
+*.swo
+*.swp
+*.tmp
+.project
+.pydevproject
+.settings
+
+# Context / Latex / Metafont Intermediate files #
+*.mp
+*.log
+*.tuc
+*.tuo
+*.top
+*.tui
+
+# Virtual environment #
+venv
+
+# Some handy defaults courtesy of GitHub #
+
+# Compiled source #
+*.com
+*.class
+*.dll
+*.exe
+*.o
+*.so
+*.pyc
+
+# Packages #
+# it's better to unpack these files and commit the raw source
+# git has its own built in compression methods
+*.7z
+*.dmg
+*.gz
+*.iso
+*.jar
+*.rar
+*.tar
+*.zip
+
+# Logs and databases #
+*.log
+*.sql
+*.sqlite
+
+# OS generated files #
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+Icon?
+ehthumbs.db
+Thumbs.db
+
+
-- 
GitLab