mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-16 01:39:28 +08:00
Code/repo search (#2582)
Indexed search of repository contents (for default branch only)
This commit is contained in:
conf
integrations
models
modules
options/locale
public
routers
templates/repo
vendor
@ -263,6 +263,10 @@ func pushUpdate(opts PushUpdateOptions) (repo *Repository, err error) {
|
||||
commits = ListToPushCommits(l)
|
||||
}
|
||||
|
||||
if opts.RefFullName == git.BranchPrefix+repo.DefaultBranch {
|
||||
UpdateRepoIndexer(repo)
|
||||
}
|
||||
|
||||
if err := CommitRepoAction(CommitRepoActionOptions{
|
||||
PusherName: opts.PusherName,
|
||||
RepoOwnerID: owner.ID,
|
||||
|
Reference in New Issue
Block a user