Since issues are just markdown files in a special branch I'd like to always include 2 convenience bash scripts into this branch new_issue.sh and new_comment.sh.
new_issue.sh asks for a title and then creates a new directory with the correct timestamp as well as the initial markdown file and opens $EDITOR for that markdown file (should have the issue template inserted beforehand).
new_comment.sh should be similar, only that it takes an issue directory path as an argument and then adds another markdown file for a comment with the template.
Those scripts should be quite simple/short and would make it much simpler to manage issues straight via git, since the timestamp format and frontmatter structure isn't that obvious.
Since issues are just markdown files in a special branch I'd like to always include 2 convenience bash scripts into this branch
new_issue.shandnew_comment.sh.new_issue.shasks for a title and then creates a new directory with the correct timestamp as well as the initial markdown file and opens $EDITOR for that markdown file (should have the issue template inserted beforehand).new_comment.shshould be similar, only that it takes an issue directory path as an argument and then adds another markdown file for a comment with the template.Those scripts should be quite simple/short and would make it much simpler to manage issues straight via git, since the timestamp format and frontmatter structure isn't that obvious.
Not yet