diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2021-11-01 22:41:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 22:41:39 +0100 |
commit | a6a8f66020b3a3b92fd4fa2f68c11a0f24ef46ea (patch) | |
tree | 88d4441e052c902ec90edb26b6117e2bb5bda818 /_examples/README.md | |
parent | 99457e570d34320b12fb4fcd0f054f3d0b1d3eec (diff) | |
parent | 06a3e504bee6033d42690d01100edede077c7fe5 (diff) | |
download | go-git-a6a8f66020b3a3b92fd4fa2f68c11a0f24ef46ea.tar.gz |
Merge pull request #374 from snebel29/feat/add-example
examples: added "tag find if head is tagged"
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 92b9d4d..3a4c539 100644 --- a/_examples/README.md +++ b/_examples/README.md @@ -19,6 +19,7 @@ Here you can find a list of annotated _go-git_ examples: - [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. +- [tag find if head is tagged](find-if-any-tag-point-head/main.go) - Find if `HEAD` is tagged. - [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. |