diff options
author | silverwind <me@silverwind.io> | 2024-04-13 04:28:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-13 04:28:20 +0200 |
commit | 68271834d6ae6d397b5a2048f9e515ff53735994 (patch) | |
tree | 160405da93a8fa82d05febe4908fe2063c19c54f /.gitignore | |
parent | 487b12783fb2dba7459a8aa739162cfe6bab3904 (diff) | |
download | gitea-68271834d6ae6d397b5a2048f9e515ff53735994.tar.gz gitea-68271834d6ae6d397b5a2048f9e515ff53735994.zip |
Add `/public/assets/img/webpack` to ignore files again (#30451)
Fixes https://github.com/go-gitea/gitea/issues/30442
It's inconvenient to have new untracked files show up in git when
switching to older branches that had generated them.
Introduce a list of such files and folders to gitignore and
dockerignore.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 501fef7dcf..46c8b9b49c 100644 --- a/.gitignore +++ b/.gitignore @@ -94,6 +94,9 @@ cpu.out /.air /.go-licenses +# Files and folders that were previously generated +/public/assets/img/webpack + # Snapcraft /gitea_a*.txt snap/.snapcraft/ |