diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-30 16:24:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-30 16:24:07 +0100 |
commit | a24e40af0aa2d9d512051269993a1b08c0496d12 (patch) | |
tree | 65936a6a365263c93e4b57c3b67aad6a13489e68 /examples/storage/main.go | |
parent | a48bc6e17ef6298f93ec21cdf1a5e387640673b6 (diff) | |
parent | 35378e7db9288e8244f2634a1b47981606731cef (diff) | |
download | go-git-a24e40af0aa2d9d512051269993a1b08c0496d12.tar.gz |
Merge pull request #229 from mcuadros/worktree
Worktree and new Repository Contructors
Diffstat (limited to 'examples/storage/main.go')
-rw-r--r-- | examples/storage/main.go | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/examples/storage/main.go b/examples/storage/main.go index b047e43..05752a1 100644 --- a/examples/storage/main.go +++ b/examples/storage/main.go @@ -26,30 +26,31 @@ func main() { s, err := aerospike.NewStorage(client, "test", url) CheckIfError(err) - // A new repository instance using as storage the custom implementation - r, err := git.NewRepository(s) - CheckIfError(err) - switch action { case "clone": - clone(r, url) + clone(s, url) case "log": - log(r) + log(s) default: panic("unknown option") } } -func clone(r *git.Repository, url string) { +func clone(s git.Storer, url string) { // Clone the given repository, all the objects, references and - // configuration sush as remotes, are save into the Aerospike database. + // configuration sush as remotes, are save into the Aerospike database + // using the custom storer Info("git clone %s", url) - err := r.Clone(&git.CloneOptions{URL: url}) + _, err := git.Clone(s, nil, &git.CloneOptions{URL: url}) CheckIfError(err) } -func log(r *git.Repository) { +func log(s git.Storer) { + // We open the repository using as storer the custom implementation + r, err := git.Open(s, nil) + CheckIfError(err) + // Prints the history of the repository starting in the current HEAD, the // objects are retrieved from Aerospike database. Info("git log --oneline") |