summaryrefslogtreecommitdiff
path: root/tag.go
AgeCommit message (Collapse)Author
2017-07-08tag: accept an Objecter for creating a tagCarlos Martín Nieto
This lets us create a tag for any kind of object.
2017-07-08Add Objecer interfaceCarlos Martín Nieto
We do want to be able to accept generic objects in functions. Add this interface so we can accept that instead of specific object types.
2017-07-08Third round of keep-alive aditionsCarlos Martín Nieto
2016-05-29Tag RemoveMirko Nosenzo
Added support for removal of a Tag
2015-08-04Move from an Object interface to a typeCarlos Martín Nieto
An Object should be about representing a libgit2 object rather than showing which methods it should support. Change any return of Object to *Object and provide methods to convert between this and the particular type.
2015-07-31Move CreateTag to the tags collectionCarlos Martín Nieto
2015-07-31Add more support for tagsCalin Seciu
Implement support for the following libgit2 functions: - 'git_tag_list' and 'git_tag_list_match' - 'git_tag_foreach' - 'git_tag_create_lightweight'
2015-07-31Add TagsCollectionCalin Seciu
2014-06-09add support for annotated tagsFrank Benkstein