@@ -72,11 +72,12 @@ func Branches(ctx *context.Context) {
72
72
73
73
skip := (page - 1 ) * limit
74
74
log .Debug ("Branches: skip: %d limit: %d" , skip , limit )
75
- branches , branchesCount := loadBranches (ctx , skip , limit )
75
+ defaultBranchBranch , branches , branchesCount := loadBranches (ctx , skip , limit )
76
76
if ctx .Written () {
77
77
return
78
78
}
79
79
ctx .Data ["Branches" ] = branches
80
+ ctx .Data ["DefaultBranchBranch" ] = defaultBranchBranch
80
81
pager := context .NewPagination (int (branchesCount ), setting .Git .BranchesRangeSize , page , 5 )
81
82
pager .SetDefaultParams (ctx )
82
83
ctx .Data ["Page" ] = pager
@@ -165,25 +166,28 @@ func redirect(ctx *context.Context) {
165
166
166
167
// loadBranches loads branches from the repository limited by page & pageSize.
167
168
// NOTE: May write to context on error.
168
- func loadBranches (ctx * context.Context , skip , limit int ) ([]* Branch , int ) {
169
+ func loadBranches (ctx * context.Context , skip , limit int ) (* Branch , []* Branch , int ) {
169
170
defaultBranch , err := ctx .Repo .GitRepo .GetBranch (ctx .Repo .Repository .DefaultBranch )
170
171
if err != nil {
171
- log .Error ("loadBranches: get default branch: %v" , err )
172
- ctx .ServerError ("GetDefaultBranch" , err )
173
- return nil , 0
172
+ if ! git .IsErrBranchNotExist (err ) {
173
+ log .Error ("loadBranches: get default branch: %v" , err )
174
+ ctx .ServerError ("GetDefaultBranch" , err )
175
+ return nil , nil , 0
176
+ }
177
+ log .Warn ("loadBranches: missing default branch %s for %-v" , ctx .Repo .Repository .DefaultBranch , ctx .Repo .Repository )
174
178
}
175
179
176
180
rawBranches , totalNumOfBranches , err := ctx .Repo .GitRepo .GetBranches (skip , limit )
177
181
if err != nil {
178
182
log .Error ("GetBranches: %v" , err )
179
183
ctx .ServerError ("GetBranches" , err )
180
- return nil , 0
184
+ return nil , nil , 0
181
185
}
182
186
183
187
protectedBranches , err := models .GetProtectedBranches (ctx .Repo .Repository .ID )
184
188
if err != nil {
185
189
ctx .ServerError ("GetProtectedBranches" , err )
186
- return nil , 0
190
+ return nil , nil , 0
187
191
}
188
192
189
193
repoIDToRepo := map [int64 ]* repo_model.Repository {}
@@ -194,36 +198,40 @@ func loadBranches(ctx *context.Context, skip, limit int) ([]*Branch, int) {
194
198
195
199
var branches []* Branch
196
200
for i := range rawBranches {
197
- if rawBranches [i ].Name == defaultBranch .Name {
201
+ if defaultBranch != nil && rawBranches [i ].Name == defaultBranch .Name {
198
202
// Skip default branch
199
203
continue
200
204
}
201
205
202
- var branch = loadOneBranch (ctx , rawBranches [i ], protectedBranches , repoIDToRepo , repoIDToGitRepo )
206
+ var branch = loadOneBranch (ctx , rawBranches [i ], defaultBranch , protectedBranches , repoIDToRepo , repoIDToGitRepo )
203
207
if branch == nil {
204
- return nil , 0
208
+ return nil , nil , 0
205
209
}
206
210
207
211
branches = append (branches , branch )
208
212
}
209
213
210
- // Always add the default branch
211
- log .Debug ("loadOneBranch: load default: '%s'" , defaultBranch .Name )
212
- branches = append (branches , loadOneBranch (ctx , defaultBranch , protectedBranches , repoIDToRepo , repoIDToGitRepo ))
214
+ var defaultBranchBranch * Branch
215
+ if defaultBranch != nil {
216
+ // Always add the default branch
217
+ log .Debug ("loadOneBranch: load default: '%s'" , defaultBranch .Name )
218
+ defaultBranchBranch = loadOneBranch (ctx , defaultBranch , defaultBranch , protectedBranches , repoIDToRepo , repoIDToGitRepo )
219
+ branches = append (branches , defaultBranchBranch )
220
+ }
213
221
214
222
if ctx .Repo .CanWrite (unit .TypeCode ) {
215
223
deletedBranches , err := getDeletedBranches (ctx )
216
224
if err != nil {
217
225
ctx .ServerError ("getDeletedBranches" , err )
218
- return nil , 0
226
+ return nil , nil , 0
219
227
}
220
228
branches = append (branches , deletedBranches ... )
221
229
}
222
230
223
- return branches , totalNumOfBranches
231
+ return defaultBranchBranch , branches , totalNumOfBranches
224
232
}
225
233
226
- func loadOneBranch (ctx * context.Context , rawBranch * git.Branch , protectedBranches []* models.ProtectedBranch ,
234
+ func loadOneBranch (ctx * context.Context , rawBranch , defaultBranch * git.Branch , protectedBranches []* models.ProtectedBranch ,
227
235
repoIDToRepo map [int64 ]* repo_model.Repository ,
228
236
repoIDToGitRepo map [int64 ]* git.Repository ) * Branch {
229
237
log .Trace ("loadOneBranch: '%s'" , rawBranch .Name )
@@ -243,10 +251,15 @@ func loadOneBranch(ctx *context.Context, rawBranch *git.Branch, protectedBranche
243
251
}
244
252
}
245
253
246
- divergence , divergenceError := files_service .CountDivergingCommits (ctx .Repo .Repository , git .BranchPrefix + branchName )
247
- if divergenceError != nil {
248
- ctx .ServerError ("CountDivergingCommits" , divergenceError )
249
- return nil
254
+ divergence := & git.DivergeObject {
255
+ Ahead : - 1 ,
256
+ Behind : - 1 ,
257
+ }
258
+ if defaultBranch != nil {
259
+ divergence , err = files_service .CountDivergingCommits (ctx .Repo .Repository , git .BranchPrefix + branchName )
260
+ if err != nil {
261
+ log .Error ("CountDivergingCommits" , err )
262
+ }
250
263
}
251
264
252
265
pr , err := models .GetLatestPullRequestByHeadInfo (ctx .Repo .Repository .ID , branchName )
0 commit comments