You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ci is *git.Commit
for _, e := range ci.ListEntries() {
if e.IsDir() || strings.HasPrefix(e.Name(), ".") {
continue
}
rc, err := e.Blob().Data()
// e.Blob().Data() will deference a nil pointer, while e.Blob() is okay.
}
// ci is *git.Commit
for _, e := range ci.ListEntries() {
if e.IsDir() || strings.HasPrefix(e.Name(), ".") {
continue
}
rc, err := e.Blob().Data()
// e.Blob().Data() will deference a nil pointer, while e.Blob() is okay.
}
This is caused by this PR #8.
The text was updated successfully, but these errors were encountered: