File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1313 [ Releases tab] ( https://github.com/MyIntervals/PHP-CSS-Parser/releases ) ,
1414 create a new release and copy the change log entries to the new release.
15151 . 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+ ``` bash
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+ ``` bash
38+ git tag -a -s v4.2.0 -m " Tag version 4.2.0"
39+ git push --tags
40+ ```
You can’t perform that action at this time.
0 commit comments