跟踪 Git 中的待办事项和问题

发布于 2024-11-29 10:39:50 字数 95 浏览 0 评论 0 原文

总的来说,我是 Git 和版本控制的新手。您如何跟踪他们的编码待办事项列表和问题/错误?

请注意,我正在开发一个只有 2 名开发人员的私人项目(电子商务网站)。

I'm a newbie to Git and version control in general. How do you keep track of their coding to-do list and issues/bugs?

Note that I'm working on a private project (e-commerce website) with just 2 developers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

静谧幽蓝 2024-12-06 10:39:50

Git 并不是一个错误跟踪系统,如果您的需求比简单的“TODO”文件更复杂,那么您需要 将 Git 与其他系统集成

话虽如此,我喜欢将 README 放在我的存储库的根目录中。
这样,我就可以快速描述分支的用途

git show myBranch: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 show myBranch:README
梦中的蝴蝶 2024-12-06 10:39:50

我也在独立/在一个小团队中进行开发,并且没有发现任何不能完全满足我的需求的东西,我想出了一个小脚本, 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.

听闻余生 2024-12-06 10:39:50

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文