Add checkbox to search for all the branches by commit message (#813)
and updating the vendor directory
This commit is contained in:
parent
f35b20b042
commit
e388db311b
9 changed files with 39 additions and 18 deletions
4
vendor/code.gitea.io/git/commit.go
generated
vendored
4
vendor/code.gitea.io/git/commit.go
generated
vendored
|
@ -198,8 +198,8 @@ func (c *Commit) CommitsBeforeUntil(commitID string) (*list.List, error) {
|
|||
}
|
||||
|
||||
// SearchCommits returns the commits match the keyword before current revision
|
||||
func (c *Commit) SearchCommits(keyword string) (*list.List, error) {
|
||||
return c.repo.searchCommits(c.ID, keyword)
|
||||
func (c *Commit) SearchCommits(keyword string, all bool) (*list.List, error) {
|
||||
return c.repo.searchCommits(c.ID, keyword, all)
|
||||
}
|
||||
|
||||
// GetFilesChangedSinceCommit get all changed file names between pastCommit to current revision
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue