有没有办法从 GitHub 创建带注释的标签?
Is there any way to create an annotated tag from GitHub?
似乎在 GitHub 上创建版本时它是一个轻量级标签。有什么方法可以在 GitHub 中创建带注释标签的版本吗?澄清一下,我想问是否有办法从 GitHub UI?
不幸的是,github 的 UI 不支持带注释的标签(目前),但是有一个功能请求:https://github.com/PHPMailer/PHPMailer/issues/752#issuecomment-226418384
请注意 github 员工回复中的解决方法:
As a workaround you can create annotated signed tags via the command and push it up to the repository.
When creating a release you should then be able to choose this tag from the list.
目前我们无法使用 git tag -a
选项创建带注释的标签。
似乎在 GitHub 上创建版本时它是一个轻量级标签。有什么方法可以在 GitHub 中创建带注释标签的版本吗?澄清一下,我想问是否有办法从 GitHub UI?
不幸的是,github 的 UI 不支持带注释的标签(目前),但是有一个功能请求:https://github.com/PHPMailer/PHPMailer/issues/752#issuecomment-226418384
请注意 github 员工回复中的解决方法:
As a workaround you can create annotated signed tags via the command and push it up to the repository. When creating a release you should then be able to choose this tag from the list.
目前我们无法使用 git tag -a
选项创建带注释的标签。