Skip to content

Commit df28b80

Browse files
committed
Merge pull request rails#4057 from joliss/gitignore
Add db/*.sqlite3-journal to .gitignore
2 parents 6a6fc4e + 22cb97b commit df28b80

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

railties/lib/rails/generators/rails/app/templates/gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
# Ignore the default SQLite database.
1111
/db/*.sqlite3
12+
/db/*.sqlite3-journal
1213

1314
# Ignore all logfiles and tempfiles.
1415
/log/*.log

railties/lib/rails/generators/rails/plugin_new/templates/gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
log/*.log
33
pkg/
44
<%= dummy_path %>/db/*.sqlite3
5+
<%= dummy_path %>/db/*.sqlite3-journal
56
<%= dummy_path %>/log/*.log
67
<%= dummy_path %>/tmp/
78
<%= dummy_path %>/.sass-cache

0 commit comments

Comments
 (0)