diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2020-05-24 16:53:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 16:53:30 +0200 |
commit | e7f544844d6d736acfd9d75ee0d4a9d37f450103 (patch) | |
tree | dc44247231e6603bf10acaee91af5523120b4b84 /_examples/README.md | |
parent | 6d8103df45ce09ffd5323b4ef46d26440400a54f (diff) | |
parent | baf8c2761217cd457ef672972d5c1fb4d066e95a (diff) | |
download | go-git-e7f544844d6d736acfd9d75ee0d4a9d37f450103.tar.gz |
Merge pull request #75 from mcuadros/scope-config
repository.ConfigScoped and worktree.Commit with empty CommitOptions
Diffstat (limited to '_examples/README.md')
-rw-r--r-- | _examples/README.md | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/_examples/README.md b/_examples/README.md index 6c17941..1d82fbd 100644 --- a/_examples/README.md +++ b/_examples/README.md @@ -3,26 +3,27 @@ Here you can find a list of annotated _go-git_ examples: ### Basic -- [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 +- [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. - [username and password](clone/auth/basic/username_password/main.go) - Cloning a repository - using a username and password + using a username and password. - [personal access token](clone/auth/basic/access_token/main.go) - Cloning - a repository using a GitHub personal access token -- [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 + a repository using a GitHub personal access token. +- [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 -- [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 -- [submodule](submodule/main.go) - Submodule update remote +- [tag](tag/main.go) - List/print repository tags. +- [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. +- [config](config/main.go) - Explains how to work with config files. +- [submodule](submodule/main.go) - Submodule update remote. ### Advanced -- [custom_http](custom_http/main.go) - Replacing the HTTP client using a custom one +- [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 +- [storage](storage/README.md) - Implementing a custom storage system. |