package reference
import("sort""github.com/go-git/go-git/v5/plumbing")// Sort sorts the references by name to ensure a consistent order.funcSort(refs []*plumbing.Reference) {
sort.Slice(refs,func(i, j int)bool{return refs[i].Name() < refs[j].Name()})}