Merge "Add set-head SSH command"
This commit is contained in:
@@ -75,6 +75,9 @@ link:cmd-rename-group.html[gerrit rename-group]::
|
|||||||
link:cmd-review.html[gerrit review]::
|
link:cmd-review.html[gerrit review]::
|
||||||
Verify, approve and/or submit a patch set from the command line.
|
Verify, approve and/or submit a patch set from the command line.
|
||||||
|
|
||||||
|
link:cmd-set-head.html[gerrit set-head]::
|
||||||
|
Change the HEAD reference of a project.
|
||||||
|
|
||||||
link:cmd-set-reviewers.html[gerrit set-reviewers]::
|
link:cmd-set-reviewers.html[gerrit set-reviewers]::
|
||||||
Add or remove reviewers on a change.
|
Add or remove reviewers on a change.
|
||||||
|
|
||||||
|
46
Documentation/cmd-set-head.txt
Normal file
46
Documentation/cmd-set-head.txt
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
= gerrit set-head
|
||||||
|
|
||||||
|
== NAME
|
||||||
|
gerrit set-head - Change a project's HEAD.
|
||||||
|
|
||||||
|
== SYNOPSIS
|
||||||
|
--
|
||||||
|
'ssh' -p <port> <host> 'gerrit set-head'
|
||||||
|
--project <NAME> | -p <NAME>
|
||||||
|
--new-head <REF>
|
||||||
|
--
|
||||||
|
|
||||||
|
== DESCRIPTION
|
||||||
|
Modifies a given project's HEAD reference.
|
||||||
|
|
||||||
|
The command is argument-safe, that is, if no argument is given the
|
||||||
|
previous settings are kept intact.
|
||||||
|
|
||||||
|
== ACCESS
|
||||||
|
Caller must be an owner of the given project.
|
||||||
|
|
||||||
|
== SCRIPTING
|
||||||
|
This command is intended to be used in scripts.
|
||||||
|
|
||||||
|
== OPTIONS
|
||||||
|
<PROJECT_NAME>::
|
||||||
|
Required; name of the project to change the HEAD. If name ends
|
||||||
|
with `.git` the suffix will be automatically removed.
|
||||||
|
|
||||||
|
--new-head::
|
||||||
|
Required; name of the ref that should be set as new HEAD. The
|
||||||
|
'refs/heads/' prefix can be omitted.
|
||||||
|
|
||||||
|
== EXAMPLES
|
||||||
|
Change HEAD of project `example` to `stable-2.11` branch:
|
||||||
|
|
||||||
|
====
|
||||||
|
$ ssh -p 29418 review.example.com gerrit set-head example --new-head stable-2.11
|
||||||
|
====
|
||||||
|
|
||||||
|
GERRIT
|
||||||
|
------
|
||||||
|
Part of link:index.html[Gerrit Code Review]
|
||||||
|
|
||||||
|
SEARCHBOX
|
||||||
|
---------
|
@@ -43,9 +43,9 @@ import java.io.IOException;
|
|||||||
public class SetHead implements RestModifyView<ProjectResource, Input> {
|
public class SetHead implements RestModifyView<ProjectResource, Input> {
|
||||||
private static final Logger log = LoggerFactory.getLogger(SetHead.class);
|
private static final Logger log = LoggerFactory.getLogger(SetHead.class);
|
||||||
|
|
||||||
static class Input {
|
public static class Input {
|
||||||
@DefaultInput
|
@DefaultInput
|
||||||
String ref;
|
public String ref;
|
||||||
}
|
}
|
||||||
|
|
||||||
private final GitRepositoryManager repoManager;
|
private final GitRepositoryManager repoManager;
|
||||||
|
@@ -77,6 +77,7 @@ public class DefaultCommandModule extends CommandModule {
|
|||||||
command(gerrit, CreateAccountCommand.class);
|
command(gerrit, CreateAccountCommand.class);
|
||||||
command(gerrit, CreateGroupCommand.class);
|
command(gerrit, CreateGroupCommand.class);
|
||||||
command(gerrit, CreateProjectCommand.class);
|
command(gerrit, CreateProjectCommand.class);
|
||||||
|
command(gerrit, SetHeadCommand.class);
|
||||||
command(gerrit, AdminQueryShell.class);
|
command(gerrit, AdminQueryShell.class);
|
||||||
if (!slaveMode) {
|
if (!slaveMode) {
|
||||||
command("git-receive-pack").to(Commands.key(git, "receive-pack"));
|
command("git-receive-pack").to(Commands.key(git, "receive-pack"));
|
||||||
|
@@ -0,0 +1,55 @@
|
|||||||
|
// Copyright (C) 2015 The Android Open Source Project
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package com.google.gerrit.sshd.commands;
|
||||||
|
|
||||||
|
import com.google.gerrit.extensions.restapi.UnprocessableEntityException;
|
||||||
|
import com.google.gerrit.server.project.ProjectControl;
|
||||||
|
import com.google.gerrit.server.project.ProjectResource;
|
||||||
|
import com.google.gerrit.server.project.SetHead;
|
||||||
|
import com.google.gerrit.server.project.SetHead.Input;
|
||||||
|
import com.google.gerrit.sshd.CommandMetaData;
|
||||||
|
import com.google.gerrit.sshd.SshCommand;
|
||||||
|
import com.google.inject.Inject;
|
||||||
|
|
||||||
|
import org.kohsuke.args4j.Argument;
|
||||||
|
import org.kohsuke.args4j.Option;
|
||||||
|
|
||||||
|
@CommandMetaData(name = "set-head", description = "Change HEAD reference for a project")
|
||||||
|
public class SetHeadCommand extends SshCommand {
|
||||||
|
|
||||||
|
@Argument(index = 0, required = true, metaVar = "NAME", usage = "name of the project")
|
||||||
|
private ProjectControl project;
|
||||||
|
|
||||||
|
@Option(name = "--new-head", required = true, metaVar = "REF", usage = "new HEAD reference")
|
||||||
|
private String newHead;
|
||||||
|
|
||||||
|
private final SetHead setHead;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
SetHeadCommand(SetHead setHead) {
|
||||||
|
this.setHead = setHead;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void run() throws Exception {
|
||||||
|
Input input = new SetHead.Input();
|
||||||
|
input.ref = newHead;
|
||||||
|
try {
|
||||||
|
setHead.apply(new ProjectResource(project), input);
|
||||||
|
} catch (UnprocessableEntityException e) {
|
||||||
|
throw new UnloggedFailure("fatal: " + e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user