Skip to content

Latest commit

 

History

History
executable file
·
24 lines (23 loc) · 485 Bytes

ISSUES.md

File metadata and controls

executable file
·
24 lines (23 loc) · 485 Bytes

Resolving tags conflicts when running lerna publish

$ git tag
v0.0.1
v0.0.4
  • remove the tag locally
$ git tag -d v0.0.4
Deleted tag 'v0.0.4' (was c34157b)
$ git tag -d v0.0.1
Deleted tag 'v0.0.1' (was edfaa93)
  • remove the tag remotely
$ git push origin :refs/tags/v0.0.4
To https://github.com/cdmbase/ide-stack.git
 - [deleted]         v0.0.4
$ git push origin :refs/tags/v0.0.1
To https://github.com/cdmbase/ide-stack.git
 - [deleted]         v0.0.1