aboutsummaryrefslogblamecommitdiffstats
path: root/_examples/README.md
blob: 9473a0630a258bd957f98e29d73d7f1ad6922b8f (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                                 
                                                                                                            
                                                                          

                                                                                    
                                                                               

                                                                                   
                                                                     
# go-git: examples

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
- [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.
### Advanced
- [custom_http](custom_http/main.go) - Replacing the HTTP client using a custom one
- [storage](storage/README.md) - Implementing a custom storage system