diff options
author | Nicholas Johnson <nick@nicholasjohnson.ch> | 2024-05-26 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicholasjohnson.ch> | 2024-05-26 00:00:00 +0000 |
commit | 85c9fbcad2c0748155c65559282cd3cc07cff3da782ccc55a2c3d9b7093e8a58 (patch) | |
tree | a70984a59c84845320a630b9ec22309f324aea82f85220bd4febed5a722936ab | |
parent | 33bb174f0440c736786d1d62486912ef25601741d0df29baab41950df4c30bcb (diff) | |
download | journal-85c9fbcad2c0748155c65559282cd3cc07cff3da782ccc55a2c3d9b7093e8a58.tar.gz journal-85c9fbcad2c0748155c65559282cd3cc07cff3da782ccc55a2c3d9b7093e8a58.zip |
Fix .gitignore excludes
This fixes a bug where a file or directory created by the user is
incorrectly ignored by version control because it has the same name as
a Hugo-generated file.
-rw-r--r-- | .gitignore | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,2 +1,2 @@ -public/ -.hugo_build.lock +/public/ +/.hugo_build.lock |