create new issue dd20d3ddc86ee802fe7b15e2c91dc160

This commit is contained in:
Sebastian Kuzminsky 2025-07-15 10:47:43 -06:00
parent b57585f315
commit e8220d50a4

View file

@ -0,0 +1,10 @@
store tags as a dir of files, not a file of lines
Currently we store all tags in a file (named `tags`) in the Issue dir.
The `tags` file has a line per tag.
This is bad because `ent sync` will get a git merge conflict if we add
or remove a tag near where someone else added or removed a tag.
Better to have a `tags` a directory, with an empty file per tag.
The filename is the tag. This use is conflict free in git.