diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-01-15 17:12:59 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2018-01-15 17:12:59 +0100 |
commit | 4d43799bf111a66b204312c79f1d0dd0d96108b1 (patch) | |
tree | b1e536bf01a391dc762c3b92283dda75e4d54b5b /_examples/README.md | |
parent | 71e438ee1c3bdca714f138fcc6bb8c084989a521 (diff) | |
download | go-git-4d43799bf111a66b204312c79f1d0dd0d96108b1.tar.gz |
_examples: branch example improvements
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
Diffstat (limited to '_examples/README.md')
-rw-r--r-- | _examples/README.md | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/_examples/README.md b/_examples/README.md index 271379b..26639b1 100644 --- a/_examples/README.md +++ b/_examples/README.md @@ -6,15 +6,18 @@ 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 +- [commit](commit/main.go) - Commit changes to the current branch to an existent repository - [push](push/main.go) - Push repository to default remote (origin) +- [pull](pull/main.go) - Pull changes from a remote repository - [checkout](checkout/main.go) - Check out a specific commit from a repository +- [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 -- [pull](pull/main.go) - Pull changes from a remote repository +- [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 + ### Advanced - [custom_http](custom_http/main.go) - Replacing the HTTP client using a custom one +- [clone with context](context/main.go) - Cloning a repository with graceful cancellation. - [storage](storage/README.md) - Implementing a custom storage system |