sh 删除本地和远程标记并推送指向HEAD的新标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 删除本地和远程标记并推送指向HEAD的新标记相关的知识,希望对你有一定的参考价值。

### Remove a local tag

```bash
git tag -d <tag>
```

### Remove a remote tag

```bash
git push --delete origin <tag>
```

### Create a local tag

```bash
git tag <tag>
```

### Push the tag to Remote

```bash
git push origin <tag>
```

### One line command

```
git tag -d 1.0.0 && git tag 1.0.0 && git push --tags -f
```

以上是关于sh 删除本地和远程标记并推送指向HEAD的新标记的主要内容,如果未能解决你的问题,请参考以下文章

sh 如何在本地和远程删除git标记

sh 如何在本地和远程删除git标记

sh 删除本地和远程存储库上的所有标记(小心)

sh 从git存储库中删除所有标记(本地和远程)

git 强制推送到master

sh 标记并推送泊坞窗图像到泊坞窗集线器