Skip to content

Commit e6a7792

Browse files
authored
Make .gitignore rules more specific (#575)
- Add /bin directories to .gitignore - Avoid false positives when the package name contains "build"
1 parent 5d8c692 commit e6a7792

File tree

6 files changed

+12
-1
lines changed

6 files changed

+12
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
build
1+
/build
2+
/buildSrc/build
23
.svn
34
.sw?
45
.*.swp

dumper/app/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bin
2+
/build

dumper/lib-common/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bin
2+
/build

dumper/lib-dumper-spi/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bin
2+
/build

dumper/lib-ext-bigquery/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bin
2+
/build
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bin
2+
/build

0 commit comments

Comments
 (0)