1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-13 14:55:50 +00:00

Fix commit between two commits calculation if there is only last commit (#10225) (#10226)

This commit is contained in:
Lauris BH 2020-02-11 05:10:12 +02:00 committed by GitHub
parent c95d9603ea
commit 8efd6b32e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -318,7 +318,7 @@ func (repo *Repository) CommitsBetween(last *Commit, before *Commit) (*list.List
var stdout []byte
var err error
if before == nil {
stdout, err = NewCommand("rev-list", before.ID.String()).RunInDirBytes(repo.Path)
stdout, err = NewCommand("rev-list", last.ID.String()).RunInDirBytes(repo.Path)
} else {
stdout, err = NewCommand("rev-list", before.ID.String()+"..."+last.ID.String()).RunInDirBytes(repo.Path)
}