From e365d48769ba9ab5d394491ff64784e9f0818f0a Mon Sep 17 00:00:00 2001
From: Nutomic <me@nutomic.com>
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 e4824883..186713e1 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 eab207b7..00000000
--- a/.rgignore
+++ /dev/null
@@ -1 +0,0 @@
-*.sqldump
-- 
2.44.1