mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-01 10:40:38 +00:00
refactor: remove Ctx field from git.Repository (#38500)
This commit is contained in:
+3
-2
@@ -4,6 +4,7 @@
|
||||
package git
|
||||
|
||||
import (
|
||||
"context"
|
||||
"regexp"
|
||||
"strings"
|
||||
|
||||
@@ -50,8 +51,8 @@ type Reference struct {
|
||||
}
|
||||
|
||||
// Commit return the commit of the reference
|
||||
func (ref *Reference) Commit() (*Commit, error) {
|
||||
return ref.repo.getCommit(ref.Object)
|
||||
func (ref *Reference) Commit(ctx context.Context) (*Commit, error) {
|
||||
return ref.repo.getCommit(ctx, ref.Object)
|
||||
}
|
||||
|
||||
// ShortName returns the short name of the reference
|
||||
|
||||
Reference in New Issue
Block a user