TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Git-dit – a distributed issue tracker for git

129 点作者 musicmatze大约 8 年前

3 条评论

musicmatze大约 8 年前
Co-Author here.<p>git-dit is a distributed issue tracker in&#x2F;for git, currently implemented as proof-of-concept in Bash. If you want to play with it, make sure you use current git versions.<p>It differs from things like bugseverywhere and fossil in that it is a distributed issue tracker for git only, using git features to implement issue tracking in a way so that merging of issues, attaching issues to commits, creating PRs, etc is possible. It does explicitely _not_ store any &quot;structured data&quot; like JSON, YAML or such, but simply uses git commit messages for issue messages. So, E-Mail workflows, github, gitlab and other hosting platforms and their issue tracking schema can be adapted and mirrored into &quot;git-dit&quot;, technically. We are not there yet, though. We are planning to reimplement the current featureset in a more robust language.<p>When playing with this, please keep in mind that this is a POC - there are bugs, missing things and rough edges. Do not use on a production repository!<p>I&#x27;d happily answer your questions!
评论 #13732944 未加载
评论 #13732940 未加载
评论 #13732933 未加载
评论 #13733121 未加载
评论 #13734543 未加载
评论 #13734355 未加载
评论 #13732903 未加载
fsiefken大约 8 年前
I like the keep it simple approach, what would be the added value compared to keeping org-mode issue tracking files with commit and issue tags in git like having an issues.org file where time estimates, schedules, person assigned and &#x27;date done&#x27; can be documented with tags and properties?<p>* TODO [#A] :f3abe64:31415: FIX bottom row space<p>* TODO [#B] :d4aae31:31410: BUG add miligram property<p>* PENDING [#A] :f4efe20:31410: FEAT implement counter<p>* DONE [#B] :e4bae20:31410: FEAT implement back button<p>with some archival function to an issues_done.org file
评论 #13734294 未加载
erikb大约 8 年前
Honestly I still didn&#x27;t really get what makes this special. You probably already know all the other attempts to put issue tracking into git repos. And you probably also know that none of them succeeded in scale, and that there are good reasons for that. I can&#x27;t really see what you&#x27;re doing differently here, yet. Hope when you&#x27;re further in development and have a more indepth documentation you&#x27;ll share it again.