We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.gitignore
1 parent b414231 commit 73ab07dCopy full SHA for 73ab07d
.gitignore
@@ -1,5 +1,17 @@
1
-target/
2
-**/*.rs.bk
3
-**/scratch.rs
4
-Cargo.lock
5
-.*.lock
+# At present, Cargo.lock is not tracked. I think this is mostly beneficial for
+# those folks who use postgresfixture as a library, but can mean that it may not
+# build as a binary, e.g. via `cargo install postgresfixture`.
+/Cargo.lock
+
6
+# The default PGDATA for the `postgresfixture` binary – or `cargo run` – is
7
+# `cluster`. Ignore it by default; like it or not, it's going to get created
8
+# when mucking around.
9
+/cluster/
10
11
+# Rust build stuff.
12
+/target/
13
14
+# Experimentation!
15
+/scratch.rs
16
17
+# End.
0 commit comments