Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are github release notes store on git?

Tags:

git

github

The release notes seem like a great thing to me but I'm wondering if they are stored on git or just an external storage system which github owns.

like image 378
The user with no hat Avatar asked May 30 '26 06:05

The user with no hat


1 Answers

Apparently not: a release seems to be proprietary to GitHub and not a metadata attached to your Git repo (using git notes for examples).

At the time of this feature (Release Your Software, July 2013), the blog post "About Github's New Releases Feature" noted:

However, there's something that still bothers me. It's tightly coupled into Github which only allows us to enter the information into Github's Releases system.
We can't transfer the data together with our Github repo if we decide to move the project from Github.
We also can't versionize or collaborate on the changelogs through Pull Requests.

like image 127
VonC Avatar answered May 31 '26 22:05

VonC