Related to How to point Go module dependency in go.mod to a latest commit in a repo?
I have the following require in go.mod file
require (
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.18.1
k8s.io/api v0.24.2
k8s.io/apimachinery v0.24.2
k8s.io/client-go v0.24.2
sigs.k8s.io/controller-runtime v0.12.2
sigs.k8s.io/kubebuilder-declarative-pattern v0.11.20220513-0.20220602225619-fe5be9431eae // Added for status (run go mod tidy)
)
The last one I am not able to understand. The repo is https://github.com/kubernetes-sigs/kubebuilder-declarative-pattern
It does NOT have a tag named v0.11.20220513
(https://github.com/kubernetes-sigs/kubebuilder-declarative-pattern/tags)
It has a commit tag fe5be9431eae
Anyone has an idea how to go to the commit referred to by v0.11.20220513-0.20220602225619-fe5be9431eae
and what does each part mean?