From cfd038734dccd535a7c2c7c9660264930729510a Mon Sep 17 00:00:00 2001 From: bedella Date: Mon, 22 Dec 2014 17:08:52 -0500 Subject: [PATCH] Add a global redis ignore file. Ignores all .rdb files, (default: dump.rdb). These files contain a binary representation of the in-memory redis data that is generated using cli tools or on a redis failure. They can be used to restore a redis db, and may contain sensitive data so should not be saved in version control. --- Global/Redis.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Global/Redis.gitignore diff --git a/Global/Redis.gitignore b/Global/Redis.gitignore new file mode 100644 index 00000000..57c1c230 --- /dev/null +++ b/Global/Redis.gitignore @@ -0,0 +1,3 @@ +# Ignore redis binary dump (dump.rdb) files + +*.rdb