1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package git2c type Commit struct { Hash string Author string Email string Date string Message string } type FilenameContents struct { Filename string Content []byte } type TreeEntry struct { Name string Mode string Size uint64 IsFile bool IsSubtree bool }