You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,13 @@ $ git tag -a v1.0.0 -m "Production release"
104
104
$ git push --follow-tags
105
105
```
106
106
107
+
`git tag` mini cheat sheet
108
+
```
109
+
$ git fetch --all # fetch all remote to local
110
+
$ git push --delete origin v0.8.1 # Remove tag remote
111
+
$ git tag --delete v0.8.1 # Remove tag local
112
+
```
113
+
107
114
## Built with
108
115
109
116
*[Cobra](https://github.com/spf13/cobra) - Cobra is both a library for creating powerful modern CLI applications as well as a program to generate applications and command files.
0 commit comments