milestone 2 complete
Some checks failed
CI / Test (pull_request) Failing after 6s
CI / Build (pull_request) Failing after 7s
CI / Lint (pull_request) Failing after 13s

This commit is contained in:
2025-10-10 19:03:31 -04:00
parent 4a517d104a
commit a0f80c5c7d
19 changed files with 2225 additions and 145 deletions

View File

@ -203,3 +203,8 @@ func (gb *GitBackend) GetCommit(sha string) (*object.Commit, error) {
return commit, nil
}
// HashFromString converts a string SHA to a plumbing.Hash
func HashFromString(sha string) plumbing.Hash {
return plumbing.NewHash(sha)
}