We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e092efd commit 2a390aeCopy full SHA for 2a390ae
git.go
@@ -10,7 +10,7 @@ import (
10
"time"
11
)
12
13
-const _VERSION = "0.2.0"
+const _VERSION = "0.2.1"
14
15
func Version() string {
16
return _VERSION
repo_commit.go
@@ -49,7 +49,7 @@ l:
49
spacepos := bytes.IndexByte(line, ' ')
50
reftype := line[:spacepos]
51
switch string(reftype) {
52
- case "tree":
+ case "tree", "object":
53
id, err := NewIDFromString(string(line[spacepos+1:]))
54
if err != nil {
55
return nil, err
@@ -62,7 +62,7 @@ l:
62
63
}
64
commit.parents = append(commit.parents, oid)
65
- case "author":
+ case "author", "tagger":
66
sig, err := newSignatureFromCommitline(line[spacepos+1:])
67
68
0 commit comments