1
0
mirror of https://gitea.com/Sirherobrine23/tea.git synced 2024-08-21 22:37:26 +00:00
tea/vendor/gopkg.in/src-d/go-git.v4/plumbing/revision.go
Lunny Xiao d4f107b710 Add Makefile / .drone.yml, use go module with vendor (#20)
* add Makefile / .drone.yml, use go module with vendor

* Update .drone.yml

Co-Authored-By: lunny <xiaolunwen@gmail.com>
2019-04-25 20:06:53 +03:00

12 lines
281 B
Go

package plumbing
// Revision represents a git revision
// to get more details about git revisions
// please check git manual page :
// https://www.kernel.org/pub/software/scm/git/docs/gitrevisions.html
type Revision string
func (r Revision) String() string {
return string(r)
}