Add apply-patch, basic revert and cherry-pick functionality (#17902)
This code adds a simple endpoint to apply patches to repositories and branches on gitea. This is then used along with the conflicting checking code in #18004 to provide a basic implementation of cherry-pick revert. Now because the buttons necessary for cherry-pick and revert have required us to create a dropdown next to the Browse Source button I've also implemented Create Branch and Create Tag operations. Fix #3880 Fix #17986 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
439ad34c71
commit
eb748f5f3c
23 changed files with 1211 additions and 57 deletions
|
@ -1075,6 +1075,10 @@ editor.add_tmpl = Add '<filename>'
|
|||
editor.add = Add '%s'
|
||||
editor.update = Update '%s'
|
||||
editor.delete = Delete '%s'
|
||||
editor.patch = Apply Patch
|
||||
editor.patching = Patching:
|
||||
editor.fail_to_apply_patch = Unable to apply patch '%s'
|
||||
editor.new_patch = New Patch
|
||||
editor.commit_message_desc = Add an optional extended description…
|
||||
editor.signoff_desc = Add a Signed-off-by trailer by the committer at the end of the commit log message.
|
||||
editor.commit_directly_to_this_branch = Commit directly to the <strong class="branch-name">%s</strong> branch.
|
||||
|
@ -1110,6 +1114,8 @@ editor.cannot_commit_to_protected_branch = Cannot commit to protected branch '%s
|
|||
editor.no_commit_to_branch = Unable to commit directly to branch because:
|
||||
editor.user_no_push_to_branch = User cannot push to branch
|
||||
editor.require_signed_commit = Branch requires a signed commit
|
||||
editor.cherry_pick = Cherry-pick %s onto:
|
||||
editor.revert = Revert %s onto:
|
||||
|
||||
commits.desc = Browse source code change history.
|
||||
commits.commits = Commits
|
||||
|
@ -1130,6 +1136,14 @@ commits.signed_by_untrusted_user_unmatched = Signed by untrusted user who does n
|
|||
commits.gpg_key_id = GPG Key ID
|
||||
commits.ssh_key_fingerprint = SSH Key Fingerprint
|
||||
|
||||
commit.actions = Actions
|
||||
commit.revert = Revert
|
||||
commit.revert-header = Revert: %s
|
||||
commit.revert-content = Select branch to revert onto:
|
||||
commit.cherry-pick = Cherry-pick
|
||||
commit.cherry-pick-header = Cherry-pick: %s
|
||||
commit.cherry-pick-content = Select branch to cherry-pick onto:
|
||||
|
||||
ext_issues = Access to External Issues
|
||||
ext_issues.desc = Link to an external issue tracker.
|
||||
|
||||
|
@ -2215,11 +2229,16 @@ branch.included_desc = This branch is part of the default branch
|
|||
branch.included = Included
|
||||
branch.create_new_branch = Create branch from branch:
|
||||
branch.confirm_create_branch = Create branch
|
||||
branch.create_branch_operation = Create branch
|
||||
branch.new_branch = Create new branch
|
||||
branch.new_branch_from = Create new branch from '%s'
|
||||
branch.renamed = Branch %s was renamed to %s.
|
||||
|
||||
tag.create_tag = Create tag <strong>%s</strong>
|
||||
tag.create_tag_operation = Create tag
|
||||
tag.confirm_create_tag = Create tag
|
||||
tag.create_tag_from = Create new tag from '%s'
|
||||
|
||||
tag.create_success = Tag '%s' has been created.
|
||||
|
||||
topic.manage_topics = Manage Topics
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue