aboutsummaryrefslogtreecommitdiffstats
path: root/_examples/README.md
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-03-01 17:39:56 +0100
committerGitHub <noreply@github.com>2017-03-01 17:39:56 +0100
commitd105e15d91e7553d9d40d6e9fffe0a5008cf8afe (patch)
tree3fbafa48a960575f9419392c5626de7951a6eda9 /_examples/README.md
parentf0affc5579ec907c3092b125ff35b0359b8c4e49 (diff)
parentd24ea4984ce6871ea24eb376325082602c766295 (diff)
downloadgo-git-d105e15d91e7553d9d40d6e9fffe0a5008cf8afe.tar.gz
Merge pull request #293 from ajnavarro/improvement/examples
_examples: improve documentation (fix #238)
Diffstat (limited to '_examples/README.md')
-rw-r--r--_examples/README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/_examples/README.md b/_examples/README.md
index d027d50..d6f3e55 100644
--- a/_examples/README.md
+++ b/_examples/README.md
@@ -6,9 +6,10 @@ Here you can find a list of annotated _go-git_ examples:
- [showcase](showcase/main.go) - A small showcase of the capabilities of _go-git_
- [open](open/main.go) - Opening a existing repository cloned by _git_
- [clone](clone/main.go) - Cloning a repository
+- [log](log/main.go) - Emulate `git log` command output iterating all the commit history from HEAD reference
- [remotes](remotes/main.go) - Working with remotes: adding, removing, etc
-- [progress](progress/main.go) - Priting the progress information from the sideband
-
+- [progress](progress/main.go) - Printing the progress information from the sideband
+- [push](push/main.go) - Push repository to default remote (origin)
### Advanced
- [custom_http](custom_http/main.go) - Replacing the HTTP client using a custom one
- [storage](storage/README.md) - Implementing a custom storage system