Yisheng Wang

Results 1 comments of Yisheng Wang

I found the following way to get commit message of lightweight tags. ```go tagrefs, _ := repo.Tags() tagrefs.ForEach(func(t *plumbing.Reference) error { h, err := repo.ResolveRevision(plumbing.Revision(t.Hash().String())) checkError(err) if h == nil...