链接 git 和待办事项列表
期望:
我想让我的 git 提交引用一些更高阶/级别的任务或待办事项列表。
背景:
我使用 Git 作为版本控制。现在,DVCS 很棒。一个很大的副作用是,日志应该包含为完成任务而采取的操作的原子列表,但要小心一些。这实际上是“知识库”的底层,因为第三方正在阅读日志会知道采取了哪些措施来解决问题。那很好。
现在,我正在寻找一种方法将“待办事项列表”或更一般地说,更高级别的任务链接到我的提交。
即:“解决任务 $TASK”:
- 提交日志条目 1
- 提交日志条目 2
- 提交日志条目 3
最终结果将是一个与用于实现它的原子操作链接的任务,对于许多任务来说,这将成为一个知识库、票务和项目管理解决方案。
这样的事情存在吗?或者我必须回到维基百科之类的地方吗?
Desired:
I'd like to be have my git commits reference some higher order/level task or todo list.
Background:
I use Git as my version control. Now, DVCS is great. A great side effect is that the log should contain, with some care, an atomic list of the actions taken to achieve a task. This is the bottom level of a 'knowledge base' really, since a third party, reading the log would know what actions were taken to solve a problem. That's nice.
Now , I am seeking a way to link 'todo list' or more generally, higher level tasks to my commits.
ie: "Resolving task $TASK":
- commit log entry 1
- commit log entry 2
- commit log entry 3
The end result would be a task linked with the atomic actions used to achieve it, which for many tasks would become a knowledge base , ticketing and project management solution.
Does something like this exist? Or do I have to fall back to a wiki or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
票务系统可以有一个 Git 插件来实现这一点。
例如,Jira 有一个 Git 插件:
ticketing systems can have a Git plugin achieving just that.
For instance, Jira has a Git plugin:
这是一个相反的方向,但有问题跟踪器(例如 Redmine)谁可以检测提交消息中的票号并将提交链接到相关票证。
It'a more the opposite direction but there are issue tracker (e.g. Redmine) who can detect ticket numbers in the commit message and link commits to the related ticket.