我正在尝试将GIT存储库从一个github服务器迁移到另一个,
我执行了以下命令,
$git clone --mirror git@github.x.com:org/repo
$git push git@github.y.com:org/repo master
$git push git@github.y.com:org/repo --tags
推后,我可以看到提交&标签在github.y.com服务器中是最新的,但缺少与标签关联的发行说明。有没有办法更新与标签相关的发行说明?
请帮助!!