summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-07-08 22:55:44 +0200
committerCarlos Martín Nieto <[email protected]>2017-07-08 23:22:33 +0200
commit916d555644a241a55e1779d379618ab89108e850 (patch)
tree478e6de1af1cdc7aff71a954423ef5062adcf3fd
parent7f685a6ee64db446a8b2d05f98796a1bf63984d9 (diff)
tag: accept an Objecter for creating a tag
This lets us create a tag for any kind of object.
-rw-r--r--tag.go19
1 files changed, 9 insertions, 10 deletions
diff --git a/tag.go b/tag.go
index 9e26174..4debdb7 100644
--- a/tag.go
+++ b/tag.go
@@ -67,8 +67,7 @@ type TagsCollection struct {
repo *Repository
}
-func (c *TagsCollection) Create(
- name string, commit *Commit, tagger *Signature, message string) (*Oid, error) {
+func (c *TagsCollection) Create(name string, obj Objecter, tagger *Signature, message string) (*Oid, error) {
oid := new(Oid)
@@ -84,13 +83,13 @@ func (c *TagsCollection) Create(
}
defer C.git_signature_free(taggerSig)
- ctarget := commit.ptr
-
runtime.LockOSThread()
defer runtime.UnlockOSThread()
- ret := C.git_tag_create(oid.toC(), c.repo.ptr, cname, ctarget, taggerSig, cmessage, 0)
+ o := obj.AsObject()
+ ret := C.git_tag_create(oid.toC(), c.repo.ptr, cname, o.ptr, taggerSig, cmessage, 0)
runtime.KeepAlive(c)
+ runtime.KeepAlive(obj)
if ret < 0 {
return nil, MakeGitError(ret)
}
@@ -114,7 +113,7 @@ func (c *TagsCollection) Remove(name string) error {
return nil
}
-// CreateLightweight creates a new lightweight tag pointing to a commit
+// CreateLightweight creates a new lightweight tag pointing to an object
// and returns the id of the target object.
//
// The name of the tag is validated for consistency (see git_tag_create() for the rules
@@ -126,20 +125,20 @@ func (c *TagsCollection) Remove(name string) error {
// The created tag is a simple reference and can be queried using
// repo.References.Lookup("refs/tags/<name>"). The name of the tag (eg "v1.0.0")
// is queried with ref.Shorthand().
-func (c *TagsCollection) CreateLightweight(name string, commit *Commit, force bool) (*Oid, error) {
+func (c *TagsCollection) CreateLightweight(name string, obj Objecter, force bool) (*Oid, error) {
oid := new(Oid)
cname := C.CString(name)
defer C.free(unsafe.Pointer(cname))
- ctarget := commit.ptr
-
runtime.LockOSThread()
defer runtime.UnlockOSThread()
- err := C.git_tag_create_lightweight(oid.toC(), c.repo.ptr, cname, ctarget, cbool(force))
+ o := obj.AsObject()
+ err := C.git_tag_create_lightweight(oid.toC(), c.repo.ptr, cname, o.ptr, cbool(force))
runtime.KeepAlive(c)
+ runtime.KeepAlive(obj)
if err < 0 {
return nil, MakeGitError(err)
}