Git force push tag when the tag already exists on remote

前端 未结 3 2080
醉梦人生
醉梦人生 2021-02-05 00:08

I have a tag already pushed onto the remote. When another user creates the same tag and tries to push, the push will fail because the tag already exists on the remote.

Bu

3条回答
  •  遥遥无期
    2021-02-05 00:58

    This will force push all the tags and overwrite the existing ones.

    git push -f --tags
    

提交回复
热议问题