From e365d48769ba9ab5d394491ff64784e9f0818f0a Mon Sep 17 00:00:00 2001 From: Nutomic Date: Fri, 28 Jul 2023 17:11:18 +0200 Subject: [PATCH] Move entry from .rgignore to .gitignore (#3752) rg command respects gitignore, and sql dumps should be ignored by git as well. So theres no reason to have a separate file. --- .gitignore | 3 +++ .rgignore | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) delete mode 100644 .rgignore diff --git a/.gitignore b/.gitignore index e48248836..186713e1f 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,6 @@ bindings # Database cluster and sockets for testing dev_pgdata/ *.PGSQL.* + +# database dumps +*.sqldump diff --git a/.rgignore b/.rgignore deleted file mode 100644 index eab207b73..000000000 --- a/.rgignore +++ /dev/null @@ -1 +0,0 @@ -*.sqldump