We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42155ea + 3e3f3e4 commit b9a4f6fCopy full SHA for b9a4f6f
pages/common/git-push.md
@@ -17,3 +17,7 @@
17
- Remove remote branches which don't exist locally
18
19
`git push --prune {{REMOTE-NAME}}`
20
+
21
+- Publish tags
22
23
+`git push --tags`
pages/common/git-tag.md
@@ -0,0 +1,20 @@
1
+# git tag
2
3
+> Create, list, delete or verify tags.
4
+> Tag is reference to specific commit.
5
6
+- List all tags
7
8
+`git tag`
9
10
+- Create a tag with the given name pointing to the current commit
11
12
+`git tag {{tag_name}}`
13
14
+- Create a tag with the given message
15
16
+`git tag {{tag_name}} -m {{tag_message}}`
+- Delete the tag with the given name
+`git tag -d {{tag_name}}`
0 commit comments