mirror of https://github.com/go-gitea/gitea.git
check master as default branch when migrate
This commit is contained in:
parent
1564b77cf5
commit
c6531c4882
|
@ -380,6 +380,15 @@ func MigrateRepository(u *User, name, desc string, private, mirror bool, url str
|
||||||
return repo, fmt.Errorf("create update hook: %v", err)
|
return repo, fmt.Errorf("create update hook: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check if repository has master branch, if so set it to default branch.
|
||||||
|
gitRepo, err := git.OpenRepository(repoPath)
|
||||||
|
if err != nil {
|
||||||
|
return repo, fmt.Errorf("open git repository: %v", err)
|
||||||
|
}
|
||||||
|
if gitRepo.IsBranchExist("master") {
|
||||||
|
repo.DefaultBranch = "master"
|
||||||
|
}
|
||||||
|
|
||||||
return repo, UpdateRepository(repo, false)
|
return repo, UpdateRepository(repo, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue