I'm aware of how to checkout a specific commit or branch using Checkout(&git.checkoutOptions)
with plumbing.ReferenceName("<branchName>")
or plumbing.Hash("<commit hash>")
, but I want to be able to clone a specific release version. Any ideas on how to do this?
How to checkout latest release tag
729 Views Asked by moho1357 At
1
You will need to set ReferenceName in CloneOptions.
Example cloning v4.1 of git-go: