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.
1 parent e6b19f2 commit d1af3bbCopy full SHA for d1af3bb
1 file changed
docs/release-checklist.md
@@ -13,3 +13,28 @@
13
[Releases tab](https://github.com/MyIntervals/PHP-CSS-Parser/releases),
14
create a new release and copy the change log entries to the new release.
15
1. Post about the new release on social media.
16
+
17
+## Working with git tags
18
19
+List all tags:
20
21
+```bash
22
+git tag
23
+```
24
25
+Locally create a tag from the current `HEAD` commit and push it to the git
26
+remote `origin`:
27
28
29
+git tag -a v4.2.0 -m "Tag version 4.2.0"
30
+git push --tags
31
32
33
+Locally create a
34
+[GPG-signed](https://git-scm.com/book/ms/v2/Git-Tools-Signing-Your-Work) tag
35
+from the current `HEAD` commit and push it to the git remote `origin`:
36
37
38
+git tag -a -s v4.2.0 -m "Tag version 4.2.0"
39
40
0 commit comments