Jay
Jay

Reputation: 506

How to push tags with release notes to another github server?

I am trying to migrate a GIT repository from one github server to another,

I executed below commands,

$git clone --mirror [email protected]:org/repo
$git push [email protected]:org/repo master
$git push [email protected]:org/repo --tags

After push, I could see the commits & tags are up to date in github.y.com server, but release notes associated to tags are missing. Is there a way to update release notes associated to tags?

Please help!!

Upvotes: 3

Views: 984

Answers (1)

Nick Volynkin
Nick Volynkin

Reputation: 15119

The easiest way seems to be forking a repository.

Upvotes: 1

Related Questions