diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-09-09 17:36:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-09 17:36:55 +0200 |
commit | bb3217ce5d5ed682a5c830c40ea031d3c92a8a7e (patch) | |
tree | 54d9fba4ad61a88db382d72fcecfc418130aee24 /_examples | |
parent | ee959a4f99b0ba130db952f2928209797d65b3f1 (diff) | |
parent | 86e75a59f4267636e9fa56323976bb805dc8fe31 (diff) | |
download | go-git-bb3217ce5d5ed682a5c830c40ea031d3c92a8a7e.tar.gz |
Merge pull request #585 from src-d/doc/upd-linl
examples: update link to GoDoc in _examples/storage
Diffstat (limited to '_examples')
-rw-r--r-- | _examples/storage/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_examples/storage/README.md b/_examples/storage/README.md index b7207ee..fc72e6f 100644 --- a/_examples/storage/README.md +++ b/_examples/storage/README.md @@ -8,7 +8,7 @@ ### and what this means ... *git* has as very well defined storage system, the `.git` directory, present on any repository. This is the place where `git` stores al the [`objects`](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects), [`references`](https://git-scm.com/book/es/v2/Git-Internals-Git-References) and [`configuration`](https://git-scm.com/docs/git-config#_configuration_file). This information is stored in plain files. -Our original **go-git** version was designed to work in memory, some time after we added support to read the `.git`, and now we have added support for fully customized [storages](https://godoc.org/github.com/src-d/go-git#Storer). +Our original **go-git** version was designed to work in memory, some time after we added support to read the `.git`, and now we have added support for fully customized [storages](https://godoc.org/gopkg.in/src-d/go-git.v4/storage#Storer). This means that the internal database of any repository can be saved and accessed on any support, databases, distributed filesystems, etc. This functionality is pretty similar to the [libgit2 backends](http://blog.deveo.com/your-git-repository-in-a-database-pluggable-backends-in-libgit2/) |