mirror of
https://github.com/go-gitea/gitea
synced 2024-11-19 16:31:41 +01:00
display commits by sha1 id
This commit is contained in:
parent
04bc86cafc
commit
d800a44a26
1 changed files with 2 additions and 2 deletions
|
@ -244,11 +244,11 @@ func GetCommitsByCommitId(userName, repoName, commitId string) (*list.List, erro
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
r, err := repo.LookupReference(commitId)
|
oid, err := git.NewOidFromString(commitId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return r.AllCommits()
|
return repo.CommitsBefore(oid)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Diff line types.
|
// Diff line types.
|
||||||
|
|
Loading…
Reference in a new issue