Re: How do i get news of git releases
From: Jeff King <hidden>
Date: 2025-09-22 20:14:05
On Mon, Sep 22, 2025 at 01:43:31PM -0400, 𝕍𝕖𝕝𝕠𝕔𝕚𝕗𝕪𝕖𝕣 wrote:
How do i get changelogs for git in a convinent format (like email or RSS or Atom)? I see that i can get changelogs in /Documentation/RelNotes/ but then i have to check the folder manually instead of it being in my email and RSS and Atom client (Thunderbird).
The Git project doesn't maintain any RSS feeds that I'm aware of. However, releases are pushed to GitHub (among many other mirrors), and they do provide feeds. So I think pointing your feed-reader at: https://github.com/git/git/releases.atom would work. The project doesn't use GitHub's Releases feature specifically, but I think annotated tags that are pushed to the repo end up there, too. The resulting feed entries are a little bare. Possibly they could be populated with the release notes, but from the Git project's perspective, the GitHub repo is really just a Git mirror. Presumably it would require some scripting around GitHub's API for the tag pushes to also create Release entries (and then probably somebody would want the same for the GitLab mirror, and so on). I think it may also be a reasonable feature for git-scm.com to have its own RSS feed. It already has to know about all of the releases (so it can point to the most recent one, for example). Most of the development for that site happens at https://github.com/git/git-scm.com. So if you or anybody is interested in adding the feature, it would probably make sense to start a discussion there. -Peff