aboutsummaryrefslogtreecommitdiffstats
path: root/_examples/README.md
diff options
context:
space:
mode:
Diffstat (limited to '_examples/README.md')
-rw-r--r--_examples/README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/_examples/README.md b/_examples/README.md
index 2e7d514..10594ab 100644
--- a/_examples/README.md
+++ b/_examples/README.md
@@ -6,12 +6,14 @@ 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
+- [clone with context](context/main.go) - Cloning a repository with graceful cancellation.
- [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) - Printing the progress information from the sideband
- [push](push/main.go) - Push repository to default remote (origin)
- [checkout](checkout/main.go) - check out a specific commit from a repository
- [tag](tag/main.go) - list/print repository tags
+- [pull](pull/main.go) - pull changes from a remote repository
### Advanced
- [custom_http](custom_http/main.go) - Replacing the HTTP client using a custom one
- [storage](storage/README.md) - Implementing a custom storage system