Skip to content

Commit 73ab07d

Browse files
committed
Tidy and document .gitignore
1 parent b414231 commit 73ab07d

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.gitignore

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
target/
2-
**/*.rs.bk
3-
**/scratch.rs
4-
Cargo.lock
5-
.*.lock
1+
# At present, Cargo.lock is not tracked. I think this is mostly beneficial for
2+
# those folks who use postgresfixture as a library, but can mean that it may not
3+
# build as a binary, e.g. via `cargo install postgresfixture`.
4+
/Cargo.lock
5+
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

Comments
 (0)