1DokuWiki Plugin ToDo
2=====
3
4see https://www.dokuwiki.org/plugin:todo
5
6
7Notes for Collaborators:
8====
9To prepare a new release:
10- Take note of latest date tag, i.e. "2023-05-17" and edit "latest" release to be based on that instead of 'latest' tag.
11- Move `latest` tag to current commit and add current date tag
12```
13# commit changes etc.
14git push origin
15git tag `date +%F`
16git tag --force latest
17git push origin `date +%F`
18# this should only update the tag, not any commits...
19git push -f origin latest
20```
21- Create a new release based on `latest` tag.
22
23To update local tags to match remote tags (i.e. reflect a move of the 'latest' tag) you need to
24```
25git fetch --tags -f
26```
27because the updated tag is refused otherwise.
28