如何将最近的提交添加到较旧的 Github 版本中?

How can I add more recent commits into an older Github release?

我已经在 Github 上创建并发布了一个版本,但后来我提交了一个我希望包含在该版本中的更改。在发布页面上,它显示

1 commit to master since this release

有没有办法重新发布包含新提交的版本,或者更改提交日期以使其出现在版本中?

Is there any way to either republish the release with the new commit included,

"Releases" at Github are just tags. So you can recreate a release just by moving its tag. You can also edit release 就在 Github 网页界面。

但是移动标签非常对于已经分叉或克隆了您的存储库的每个人来说都是不方便的,所以请不要这样做。

而是创建一个新的错误修复版本,即创建并推送一个新标签。功能发布(1.1、1.2、……)和错误修复发布(1.1.4、1.1.5、……)没有错

or change the commit date so that it appears in the release?

不,发布包括可从标记的提交访问的提交。提交行,准确地说是有向无环图,而不是按日期提交。