Use "main" as default branch name (#19354)
* Use "main" as default branch name * fix test code
This commit is contained in:
parent
1dfa26e00e
commit
d906858847
5 changed files with 5 additions and 3 deletions
|
@ -879,7 +879,7 @@ PATH =
|
||||||
;DISABLE_STARS = false
|
;DISABLE_STARS = false
|
||||||
;;
|
;;
|
||||||
;; The default branch name of new repositories
|
;; The default branch name of new repositories
|
||||||
;DEFAULT_BRANCH = master
|
;DEFAULT_BRANCH = main
|
||||||
;;
|
;;
|
||||||
;; Allow adoption of unadopted repositories
|
;; Allow adoption of unadopted repositories
|
||||||
;ALLOW_ADOPTION_OF_UNADOPTED_REPOSITORIES = false
|
;ALLOW_ADOPTION_OF_UNADOPTED_REPOSITORIES = false
|
||||||
|
|
|
@ -75,7 +75,7 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`.
|
||||||
- `PREFIX_ARCHIVE_FILES`: **true**: Prefix archive files by placing them in a directory named after the repository.
|
- `PREFIX_ARCHIVE_FILES`: **true**: Prefix archive files by placing them in a directory named after the repository.
|
||||||
- `DISABLE_MIGRATIONS`: **false**: Disable migrating feature.
|
- `DISABLE_MIGRATIONS`: **false**: Disable migrating feature.
|
||||||
- `DISABLE_STARS`: **false**: Disable stars feature.
|
- `DISABLE_STARS`: **false**: Disable stars feature.
|
||||||
- `DEFAULT_BRANCH`: **master**: Default branch name of all repositories.
|
- `DEFAULT_BRANCH`: **main**: Default branch name of all repositories.
|
||||||
- `ALLOW_ADOPTION_OF_UNADOPTED_REPOSITORIES`: **false**: Allow non-admin users to adopt unadopted repositories
|
- `ALLOW_ADOPTION_OF_UNADOPTED_REPOSITORIES`: **false**: Allow non-admin users to adopt unadopted repositories
|
||||||
- `ALLOW_DELETION_OF_UNADOPTED_REPOSITORIES`: **false**: Allow non-admin users to delete unadopted repositories
|
- `ALLOW_DELETION_OF_UNADOPTED_REPOSITORIES`: **false**: Allow non-admin users to delete unadopted repositories
|
||||||
|
|
||||||
|
|
|
@ -165,6 +165,7 @@ func initIntegrationTest() {
|
||||||
|
|
||||||
setting.SetCustomPathAndConf("", "", "")
|
setting.SetCustomPathAndConf("", "", "")
|
||||||
setting.LoadForTest()
|
setting.LoadForTest()
|
||||||
|
setting.Repository.DefaultBranch = "master" // many test code still assume that default branch is called "master"
|
||||||
_ = util.RemoveAll(models.LocalCopyPath())
|
_ = util.RemoveAll(models.LocalCopyPath())
|
||||||
git.CheckLFSVersion()
|
git.CheckLFSVersion()
|
||||||
setting.InitDBConfig()
|
setting.InitDBConfig()
|
||||||
|
|
|
@ -69,6 +69,7 @@ func MainTest(m *testing.M, pathToGiteaRoot string, fixtureFiles ...string) {
|
||||||
setting.SSH.Port = 3000
|
setting.SSH.Port = 3000
|
||||||
setting.SSH.Domain = "try.gitea.io"
|
setting.SSH.Domain = "try.gitea.io"
|
||||||
setting.Database.UseSQLite3 = true
|
setting.Database.UseSQLite3 = true
|
||||||
|
setting.Repository.DefaultBranch = "master" // many test code still assume that default branch is called "master"
|
||||||
repoRootPath, err := os.MkdirTemp(os.TempDir(), "repos")
|
repoRootPath, err := os.MkdirTemp(os.TempDir(), "repos")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fatalTestError("TempDir: %v\n", err)
|
fatalTestError("TempDir: %v\n", err)
|
||||||
|
|
|
@ -154,7 +154,7 @@ var (
|
||||||
PrefixArchiveFiles: true,
|
PrefixArchiveFiles: true,
|
||||||
DisableMigrations: false,
|
DisableMigrations: false,
|
||||||
DisableStars: false,
|
DisableStars: false,
|
||||||
DefaultBranch: "master",
|
DefaultBranch: "main",
|
||||||
|
|
||||||
// Repository editor settings
|
// Repository editor settings
|
||||||
Editor: struct {
|
Editor: struct {
|
||||||
|
|
Loading…
Reference in a new issue