collect todo or others from a git code repo
bash
cargo install git-todo-collector
```bash
git-todo-collector
git-todo-collector -r ./some-git-repo-path
git-todo-collector -r ./some-git-repo-path --format json
git-todo-collector -r ./some-git-repo-path --format html > git-todos.html ```
bash
git-todo-collector --format json | jq ''
the output
json
{
"path": "src/main.rs",
"lineno": 10,
"commit": "36adbd3",
"author": "alingse <alingse@foxmail.com>",
"datetime": "2023-07-20 00:50:44 +08:00"
}
{
"path": "src/main.rs",
"lineno": 11,
"commit": "36adbd3",
"author": "alingse <alingse@foxmail.com>",
"datetime": "2023-07-20 00:50:44 +08:00"
}
{
"path": "src/main.rs",
"lineno": 12,
"commit": "36adbd3",
"author": "alingse <alingse@foxmail.com>",
"datetime": "2023-07-20 00:50:44 +08:00"
}