我是Git的新手,并没有找到任何关于这样一个问题的参考。 StackOverflow上的一篇未回答的帖子是Similar Post,我也发现了Possible similar problem,但我也没有找到答案..
我的java程序中有一些//TODO <need to remember this>
备注,我很乐意使用github / bitbucket将它们转换为bug / task / issue。
这可能吗?
提前致谢
答案 0 :(得分:2)
您可以easily使用grep:
提取所有// TODOgrep TODO -rnf * > TODOs.txt
然后应该可以编写一个读取此TODOs.txt文件的小脚本,并利用Github's api创建新问题:
POST /repos/:owner/:repo/issues
{
"title": "Found a bug",
"body": "I'm having a problem with this.",
"assignee": "octocat",
"milestone": 1,
"labels": [
"Label1",
"Label2"
]
}
但这只是一个练习;)
答案 1 :(得分:0)
https://github.com/naholyr/github-todos似乎是恰当的。
Github-Todos是将你的TODO转换为Github问题的git hook。