Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Dutch governments builds alternative for Microsoft based on NixOS (dawo.community)
    366comments
  2. Allow Carriers on Planes (jefftk.com)
    25comments
  3. Platform-Independent SIMD in Go (go.dev)
    26comments
  4. Git-bug: Distributed, offline-first bug tracker embedded in Git (github.com/git-bug)
    28comments
  5. Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini (nyaa.sh)
    68comments
  6. Ink and Switch Interactive Homepage (inkandswitch.com)
    17comments
  7. F-Droid 2.0 (f-droid.org)
    388comments
  8. First Principles Thinking (sunilsadasivan.com)
    —discuss
  9. Boards of Casio (ambionix.com)
    9comments
  10. Topcoat is pushing the boundary of server applications with Rust (tokio.rs)
    47comments
  11. Show HN: Make cursed fonts like Times New Bastard (mitpit.com)
    102comments
  12. CVE-2025-13032: Entering and Breaking the Avast Antivirus Sandbox Part 2 (safateam.com)
    18comments
  13. Amiga Screens: A Primer (datagubbe.se)
    9comments
  14. Nobody Asked for a Crab Chair (newmobility.com)
    35comments
  15. Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design (github.com/devdotfast)
    125comments
  16. Special Projects (2016) (openai.com)
    29comments
  17. The Test (tante.cc)
    7comments
  18. Why is the liver so weirdly regenerative? (dynomight.substack.com)
    245comments
  19. I'm Tired of Being on the Network (matduggan.com)
    88comments
  20. What About Rails? (jardo.dev)
    91comments
  21. 2DWillNeverDie (2dwillneverdie.com)
    71comments
  22. The Mafia may be keeping fentanyl out of Italy (economist.com)
    183comments
  23. Rails World 2026 Opening Keynote [video] (youtube.com)
    406comments
  24. Fearless SIMD v1.0 (linebender.org)
    45comments
  25. Toyota is taking the Corolla electric (electrek.co)
    676comments
  26. Opus 5.5 is good at explainer videos (launchvideo.io)
    178comments
  27. My weird new hobby: Wandering around Tokyo on Google Maps (ahmedhossamdev.com)
    165comments
  28. Oracle on the hook to pay data centre investors even if site has no electricity (ft.com)
    89comments
  29. Show HN: Agentic CUDA Kernel Optimizer (github.com/bertaye)
    4comments
  30. Using LLMs to trace alchemical knowledge and decode 17th century letters (resobscura.substack.com)
    32comments

Git-bug: Distributed, offline-first bug tracker embedded in Git

104 pointsby 3h agogithub.com
28 comments
2h agoHN ↗

Looks like GitHub issue tracker is embedded in git itself. Interesting!

39m agoHN ↗

Who knows how many things GitHub does are actually embedded into git itself :)

2h agoHN ↗

Someone is taking lessons from fossil-scm.

Looks great by the way.

2h agoHN ↗

Looks really nice, I wonder why there hasn't been a project with this exact name and functionality before. When I think about it, "git bug" is quite limiting (the bug vs. feature discussion).

Naming things is hard, but I can see that it might feel unnatural to use "git bug" to track features. Maybe that's totally okay because it does one thing - tracking bugs - very well, and the whole feature roadmap is living in another system/process anyways?

1h agoHN ↗

Their logo is a ladybug so everything works out in the end.

1h agoHN ↗

Isn't everything nowadays a bug?

Only once it gets fixed does it become a feature.

;)

1h agoHN ↗

Although if it doesn't get fixed, it also sometimes becomes a feature.

1h agoHN ↗

Bugzilla has been using the term "bug" to track features for nearly 3 decades now. Doesn't seem to hamper them.

1h agoHN ↗

I do want to extend to pull-request and more, so I'll need to at least make space in the CLI commands. Having a "git bug bug" next to a "git bug pr" is quite ugly.

Naming is hard, but I mostly didn't expect to reach that point :-)

11m agoHN ↗

Don't overthink it! `git bug bug` is fine - it's easy to type and becomes muscle memory quickly. Love the project, my first impression is "why hasn't this existed the entire time?" which usually means you're on to something.

27m agoHN ↗

A quick checks shows that it seems so, last month. No answer to the RFC yet, though.

1h agoHN ↗

excellent! will definitely give this a try

1h agoHN ↗

A few months ago there was another of these posted, called Epiq: https://news.ycombinator.com/item?id=48155570

My comment on there is about a surge in popularity of these over a decade ago, with a link to a previous comment about problems I remember them having that prevented them from being usable for most people ( https://news.ycombinator.com/item?id=47956979 ), because of their intended design rather than an implementation issue. For example bullet 3 was a problem in one, that another tried to solve with bullet 2.

I don't have time right now to look at this one to guess if these apply, but might be interesting/useful for someone else.

1h agoHN ↗

Other than the first bullet point in your list[1], my contribution in this regard addresses everything else.

Don't have a link handy but it's on github called "rotsit" (revenge of the something issue Tracker).

‐----‐------

[1] That's the entire point of having the issue tied to a branch: if an issue is marked resolved in the branch you are looking at, then its resolved in the branch you are looking at. Storing the issues independent of branch means you need to also store extra metadat about which branch it is broken on.

17m agoHN ↗

Yep, I looked into them. Most of them use some CRDT-ish machinery to merge concurrent ticket changes. (Fixing merge conflicts in tickets would be too disappointing.) As a CRDT person, I noticed that implementing CRDT merges in git itself mostly makes that machinery unnecessary. Then you can keep your tickets in plain Markdown, having CRDT merges for both code and metadata. I have it working here btw

https://replicated.live/blog/meta

1h agoHN ↗

Hi, author here, nice to see some interest :-)

FYI, this is my near-term roadmap:

  - have the webui accept external auth (like github oauth) so that it can be a public portal and accept external interactions
  - have the webui expose a git remote endpoint
  - slightly rework identities (and likely root them in did:plc for pubkey distribution, the identity system from bluesky, without being an ATProto thing), which would allow to share identities between repos way more naturally
  - extend to support pull-requests, possibly CI. That would make it a somewhat complete local-first forge that you can also self-host trivially

Also, while there is some attention ... I'm considering working on this full time. If you have some advice or opportunities on how I can support myself doing this, let me know!

58m agoHN ↗

First of all: Huge respect for getting something out the door, looks really useful.

I'm considering working on this full time. If you have some advice or opportunities on how I can support myself doing this, let me know!

You could consider an "enterprise" tier with a special subset of features and guaranteed support. But my experience tells me this will be really hard to substantially monetize, as the customer profile for that solution is probably not spending on software until they really need to (the saying goes: selling to developers is impossible, you need to sell to their boss). Maybe a donation model or a creator-centric thing could work out!

7m agoHN ↗

Any thoughts to making this integrate alongside other systems that use git metadata to track changes?

I'm thinking mostly of Gerrit, which keeps the entire code review and change history in git as well.

Being able to keep literally everything in the same git repo seems highly appealing.

21m agoHN ↗

To me, tickets need to be too broadly accessible for anything like this to be viable. Any barrier to entry to creating tickets means people aren’t filing them. Every role at every level looks at them and edits them.

Yeah yeah we don’t want a centralized service, but it’s the ideal use case for a centralized service.

16m agoHN ↗

I agree. I'll have soon-ish the webui accept OAuth/OIDC, so you can easily host and replicate a normal bug tracker experience... yet still benefit from the other workflows that a normal forge can't have.

That's the key feature to make a distributed bug tracker actually work in practice.

11m agoHN ↗

"you only need your git repository to have a bug tracker"

What if my git repo doesn't have a bug tracker?

4m agoHN ↗

This is a really cool project, and I would love to see Magit add support for this. I do have one constructive criticism though, take it or leave it.

I would not say git-bug is "embedded" in Git. It follows Git's command naming convention, so it is resolved by the Git cli if it is found on $PATH. I would say that git-bug integrates with git's workflow and uses git's storage. I think it would be less confusing if the claim were: git-bug is fully integrated with Git, or something similar to that. To say that it is "embedded" implies that the binary is loaded through a plugin or extension mechanism more directly than a command-convention lookup.