Package org.hivedb.teamcity.plugin.commands

Source Code of org.hivedb.teamcity.plugin.commands.CheckoutCommand

package org.hivedb.teamcity.plugin.commands;

import jetbrains.buildServer.vcs.VcsException;

import org.hivedb.teamcity.plugin.GitConfiguration;
import com.intellij.execution.configurations.GeneralCommandLine;

public class CheckoutCommand extends GitCommand {

  public CheckoutCommand(GitConfiguration configuration) {
    super(configuration);
  }
 
  public void forceCheckout(String ref) throws VcsException {
    GeneralCommandLine cli = createCommandLine();
    cli.addParameter("checkout");
    cli.addParameter("-f");
    cli.addParameter(ref);
    exec(cli);
  }

}
TOP

Related Classes of org.hivedb.teamcity.plugin.commands.CheckoutCommand

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.