跟踪 Git 中的待办事项和问题
总的来说,我是 Git 和版本控制的新手。您如何跟踪他们的编码待办事项列表和问题/错误?
请注意,我正在开发一个只有 2 名开发人员的私人项目(电子商务网站)。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
总的来说,我是 Git 和版本控制的新手。您如何跟踪他们的编码待办事项列表和问题/错误?
请注意,我正在开发一个只有 2 名开发人员的私人项目(电子商务网站)。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
Git 并不是一个错误跟踪系统,如果您的需求比简单的“TODO”文件更复杂,那么您需要 将 Git 与其他系统集成。
话虽如此,我喜欢将
README
放在我的存储库的根目录中。这样,我就可以快速描述分支的用途。
Git is not meant to be a bug tracking system, and if your need are a bit more complex than a simple "TODO" file, then you need to integrate Git with other systems.
That being said, I like to put a
README
at the root directory of my repo.That way, I can have a quick description of what the branch is for.
我也在独立/在一个小团队中进行开发,并且没有发现任何不能完全满足我的需求的东西,我想出了一个小脚本, Git-Track 以跟踪错误/问题。
我已经让一些大学测试了它,反响是积极的。我们从事科学工作,大多数项目只有一两个开发人员,因此任何主要的错误跟踪解决方案都太花哨而无法真正有用。
I'm also developing standalone/in a small team and not having found anything that would not be complete overkill for my needs I came up with a small script, Git-Track to keep track of bugs/issues.
I've had some colleges test it and the resonance was positive. We work in science, most projects have only one or two developers and thus any major bug tracking solution is just way too fancy to be really useful.
我参加这个聚会迟到了,但是对于任何想要使用 github 应用程序跟踪 TODO 的人,您可以使用 http://srcoftruth.com。这是一个免费的应用程序,可以在签入时查找源代码中的 TODO,并为每个找到的 TODO 打开一个问题,随着时间的推移跟踪它,并在从存储库中删除 TODO 时关闭它。
I'm late to this party but for anyone looking to track TODOs using a github app you can use http://srcoftruth.com. It's a free app that finds the TODOs in your source code on check-in and opens an issue for each found TODO, tracks it over time and closes it when the TODO is removed from the repo.