From 7d31336e39faa41883bae38ff9916db82386e07b Mon Sep 17 00:00:00 2001 From: Oliver Schinagl Date: Mon, 30 Sep 2013 11:13:07 +0200 Subject: Never include ~ files Files ending with a tilde (~) are very often editor backup files. These should never be commited and this patch adds a .gitignore file and ignores *~ Signed-off-by: Oliver Schinagl --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c33713e --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Lines starting with '#' are considered comments. +# Ignore editor backupfiles +*~ -- cgit v0.12