-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Create a branch directly from commit on the create branch API #22956
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
562783f
Create a branch directly from commit on the create branch API
viletyy 78c1d56
change parameter rule
viletyy a2925c9
remove unnecessary condition
viletyy 2dbe25e
use GetCommit matching all tag/branch/commit sha
viletyy 89495a5
fix old commit nil panic
viletyy 1fc95f2
run generate-swagger to fix newline issue
silverwind 1c4fc9e
Fix lint
lunny a349adf
Merge branch 'main' into branch-create-22139
lunny File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,11 +173,35 @@ func CreateBranch(ctx *context.APIContext) { | |
return | ||
} | ||
|
||
if len(opt.OldBranchName) == 0 { | ||
opt.OldBranchName = ctx.Repo.Repository.DefaultBranch | ||
var oldCommit *git.Commit | ||
var err error | ||
|
||
if len(opt.OldRefName) > 0 { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we need to make sure Otherwise LGTM. |
||
oldCommit, err = ctx.Repo.GitRepo.GetCommit(opt.OldRefName) | ||
if err != nil { | ||
ctx.Error(http.StatusInternalServerError, "GetCommit", err) | ||
return | ||
} | ||
} else if len(opt.OldBranchName) > 0 { //nolint | ||
if ctx.Repo.GitRepo.IsBranchExist(opt.OldBranchName) { //nolint | ||
oldCommit, err = ctx.Repo.GitRepo.GetBranchCommit(opt.OldBranchName) //nolint | ||
if err != nil { | ||
ctx.Error(http.StatusInternalServerError, "GetBranchCommit", err) | ||
return | ||
} | ||
} else { | ||
ctx.Error(http.StatusNotFound, "", "The old branch does not exist") | ||
return | ||
} | ||
} else { | ||
oldCommit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch) | ||
if err != nil { | ||
ctx.Error(http.StatusInternalServerError, "GetBranchCommit", err) | ||
return | ||
} | ||
} | ||
|
||
err := repo_service.CreateNewBranch(ctx, ctx.Doer, ctx.Repo.Repository, opt.OldBranchName, opt.BranchName) | ||
err = repo_service.CreateNewBranchFromCommit(ctx, ctx.Doer, ctx.Repo.Repository, oldCommit.ID.String(), opt.BranchName) | ||
viletyy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if err != nil { | ||
if models.IsErrBranchDoesNotExist(err) { | ||
ctx.Error(http.StatusNotFound, "", "The old branch does not exist") | ||
|
@@ -189,7 +213,7 @@ func CreateBranch(ctx *context.APIContext) { | |
} else if models.IsErrBranchNameConflict(err) { | ||
ctx.Error(http.StatusConflict, "", "The branch with the same name already exists.") | ||
} else { | ||
ctx.Error(http.StatusInternalServerError, "CreateRepoBranch", err) | ||
ctx.Error(http.StatusInternalServerError, "CreateNewBranchFromCommit", err) | ||
} | ||
return | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.