J.

Results 1 comments of J.

My code: ```golang // FindTreeByHash finds tree object by hash string. func FindTreeByHash(repo *git.Repository, hashString string) (*object.Tree, error) { var hash plumbing.Hash if hashString != "" { hash = plumbing.NewHash(hashString)...