We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 915717c commit d2811e1Copy full SHA for d2811e1
1 file changed
README.md
@@ -8,6 +8,25 @@
8
9
This is a parser for [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)
10
11
+```bash
12
+go get -u github.com/release-lab/conventional-commit-parser
13
+```
14
+
15
+```go
16
+package main
17
18
+import (
19
+ "fmt"
20
+ "release-lab/conventional-commit-parser"
21
+)
22
23
+func main() {
24
+ result := conventionalcommitparser.Parse("feat: this is a commit message")
25
26
+ fmt.Printf("%+v\n", result)
27
+}
28
29
30
### License
31
32
The [Anti-996 License](LICENSE)
0 commit comments