Это на самом деле вопрос Go, поскольку он относится к библиотеке go-git
.
Таким образом, вы можете сделать что-то вроде следующего:
package main
import (
"fmt"
git "gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing"
)
// Basic example of how to checkout a specific commit.
func main() {
// Clone the given repository to the given directory
r, err := git.PlainClone("your-local-repo-name", false, &git.CloneOptions{
URL: "your-repo-clone-URL",
})
// handle error
// ... retrieving the commit being pointed by HEAD
ref, err := r.Head()
// handle error
w, err := r.Worktree()
// handle error
// ... checking out to commit
err = w.Checkout(&git.CheckoutOptions{
Hash: plumbing.NewHash("your-specific-commit-hash"),
})
// handle error
// ... retrieving the commit being pointed by HEAD, it shows that the
// repository is pointing to the giving commit in detached mode
ref, err = r.Head()
// handle error
fmt.Println(ref.Hash())
}
Примечание: большая часть этого кода была взята из каталога go-git
library examples и запускает весь процесс путем клонирования хранилища в новый локальный каталог; пропустите этот шаг, если он не применим к вашему варианту использования.