gogs / git

Package GoGits - Git is a pure Go implementation of Git manipulation.
Apache License 2.0
176 stars 32 forks source link

Implemented Stringer interface on Signature type #23

Closed driusan closed 8 years ago

driusan commented 8 years ago

This adds support for the fmt.Stringer interface on the Signature type. The format of the string is the same as the Author: line in a git log: "name " (without the date)

unknwon commented 8 years ago

Thanks!