diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2020-06-14 01:22:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-14 01:22:27 +0200 |
commit | b77bbc985343c5b866136c89fc2c3919002c1acf (patch) | |
tree | b3b455461b3f060f9d6db704595f143b22d4f25f /_examples/README.md | |
parent | 390968ce6bcdabc67ffad829b3c84b5da3f42b2f (diff) | |
parent | 884c3a72e87ba0f3fbbdab2731541f001335db25 (diff) | |
download | go-git-b77bbc985343c5b866136c89fc2c3919002c1acf.tar.gz |
Merge pull request #80 from lcostea/master
examples: tag, Add create and push new tag
Diffstat (limited to '_examples/README.md')
-rw-r--r-- | _examples/README.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/_examples/README.md b/_examples/README.md index 1d82fbd..80d4dd5 100644 --- a/_examples/README.md +++ b/_examples/README.md @@ -17,6 +17,7 @@ Here you can find a list of annotated _go-git_ examples: - [log](log/main.go) - Emulate `git log` command output iterating all the commit history from HEAD reference. - [branch](branch/main.go) - How to create and remove branches or any other kind of reference. - [tag](tag/main.go) - List/print repository tags. +- [tag create and push](tag-create-push/main.go) - Create and push a new tag. - [remotes](remotes/main.go) - Working with remotes: adding, removing, etc. - [progress](progress/main.go) - Printing the progress information from the sideband. - [revision](revision/main.go) - Solve a revision into a commit. |