diff options
author | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-03-01 17:51:11 +0100 |
---|---|---|
committer | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-03-06 10:37:32 +0100 |
commit | fa75ab40f9d0447a8b670c991c3fcf8c1d5c3081 (patch) | |
tree | 2367c67a1069702822447381e31b46c8aa68688c /worktree.go | |
parent | f64e4b856865bc37f45e55ef094060481b53928e (diff) | |
download | go-git-fa75ab40f9d0447a8b670c991c3fcf8c1d5c3081.tar.gz |
git: Repository methods changes
To have a more consistent public API, we decided to rename some methods, and add others:
- Commit method renamed to CommitObject
- Commits method renamed to CommitObjects
- Tree method renamed to TreeObject
- Trees method renamed to TreeObjects
- Tags method renamed to TagObjects
- Tag method renamed to TagObject
- Added method Tags that returns tag references
- Added method Branches that returns branch references
- Added method Notes that returns note references
- Added BlobObject method
- Added BlobObjects method
Also, we added more functionality related to references:
- Added iterator to iterate References with a specific filter
Some notes:
- #298
Diffstat (limited to 'worktree.go')
-rw-r--r-- | worktree.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worktree.go b/worktree.go index 36b17b6..1a1661a 100644 --- a/worktree.go +++ b/worktree.go @@ -34,7 +34,7 @@ func (w *Worktree) Checkout(commit plumbing.Hash) error { return ErrWorktreeNotClean } - c, err := w.r.Commit(commit) + c, err := w.r.CommitObject(commit) if err != nil { return err } |