All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.atlassian.jgitflow.core.ReleaseStartCommand Maven / Gradle / Ivy

There is a newer version: 0.21
Show newest version
package com.atlassian.jgitflow.core;

import java.io.IOException;

import com.atlassian.jgitflow.core.exception.*;
import com.atlassian.jgitflow.core.util.GitHelper;

import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.lib.*;
import org.eclipse.jgit.revwalk.RevCommit;
import org.eclipse.jgit.transport.RefSpec;
import org.eclipse.jgit.util.StringUtils;

import static com.atlassian.jgitflow.core.util.Preconditions.checkState;

/**
 * Start a release.
 * 

* This will create a new branch using the release prefix and release name from the tip of develop *

*

* Examples (flow is a {@link JGitFlow} instance): *

* Start a feature: * *

 * flow.releaseStart("1.0").call();
 * 
*

* Perform a fetch of develop before branching * *

 * flow.releaseStart("1.0").setFetch(true).call();
 * 
*/ public class ReleaseStartCommand extends AbstractGitFlowCommand { private static final String SHORT_NAME = "release-start"; //TODO: add ability to pass in start commit on ALL commands private final String releaseName; private boolean fetch; private boolean push; private RevCommit startCommit; private String startCommitString; /** * Create a new release start command instance. *

* An instance of this class is usually obtained by calling {@link JGitFlow#releaseStart(String)} * @param releaseName The name of the release * @param git The git instance to use * @param gfConfig The GitFlowConfiguration to use * @param reporter */ public ReleaseStartCommand(String releaseName, Git git, GitFlowConfiguration gfConfig, JGitFlowReporter reporter) { super(git, gfConfig, reporter); checkState(!StringUtils.isEmptyOrNull(releaseName)); this.releaseName = releaseName; this.fetch = false; this.push = false; this.startCommit = null; this.startCommitString = null; } @Override public ReleaseStartCommand setAllowUntracked(boolean allow) { super.setAllowUntracked(allow); return this; } @Override public ReleaseStartCommand setScmMessagePrefix(String scmMessagePrefix) { super.setScmMessagePrefix(scmMessagePrefix); return this; } /** * * @return A reference to the new release branch * @throws NotInitializedException * @throws JGitFlowGitAPIException * @throws ReleaseBranchExistsException * @throws DirtyWorkingTreeException * @throws JGitFlowIOException * @throws LocalBranchExistsException * @throws TagExistsException * @throws BranchOutOfDateException */ @Override public Ref call() throws NotInitializedException, JGitFlowGitAPIException, ReleaseBranchExistsException, DirtyWorkingTreeException, JGitFlowIOException, LocalBranchExistsException, TagExistsException, BranchOutOfDateException, LocalBranchMissingException, RemoteBranchExistsException { String prefixedReleaseName = gfConfig.getPrefixValue(JGitFlowConstants.PREFIXES.RELEASE.configKey()) + releaseName; requireGitFlowInitialized(); requireNoExistingReleaseBranches(); requireCleanWorkingTree(); requireLocalBranchAbsent(prefixedReleaseName); try { if (fetch) { RefSpec spec = new RefSpec("+" + Constants.R_HEADS + gfConfig.getDevelop() + ":" + Constants.R_REMOTES + "origin/" + gfConfig.getDevelop()); git.fetch().setRefSpecs(spec).call(); } RevCommit startPoint = null; if(null != startCommit) { startPoint = startCommit; } else if(!StringUtils.isEmptyOrNull(startCommitString)) { startPoint = GitHelper.getCommitForString(git,startCommitString); } else { startPoint = GitHelper.getLatestCommit(git, gfConfig.getDevelop()); } RevCommit latest = GitHelper.getLatestCommit(git, gfConfig.getDevelop()); reporter.debugText(getCommandName(),"startPoint is: " + startPoint); reporter.debugText(getCommandName(),"latestCommit is: " + latest.getName()); requireCommitOnBranch(startPoint, gfConfig.getDevelop()); requireTagAbsent(gfConfig.getPrefixValue(JGitFlowConstants.PREFIXES.VERSIONTAG.configKey()) + releaseName); if (GitHelper.remoteBranchExists(git, gfConfig.getDevelop(), reporter)) { requireLocalBranchNotBehindRemote(gfConfig.getDevelop()); } Ref newBranch = git.checkout() .setName(prefixedReleaseName) .setCreateBranch(true) .setStartPoint(startPoint) .call(); reporter.debugText(getCommandName(),"created branch: " + prefixedReleaseName); if (push) { requireRemoteBranchAbsent(prefixedReleaseName); reporter.debugText(getCommandName(),"pushing branch to origin using refspec: " + prefixedReleaseName); RefSpec branchSpec = new RefSpec(prefixedReleaseName); git.push().setRemote("origin").setRefSpecs(branchSpec).call(); reporter.debugText(getCommandName(),"push complete"); git.fetch().setRemote("origin").call(); //setup tracking StoredConfig config = git.getRepository().getConfig(); config.setString(ConfigConstants.CONFIG_BRANCH_SECTION, prefixedReleaseName, ConfigConstants.CONFIG_KEY_REMOTE, "origin"); config.setString(ConfigConstants.CONFIG_BRANCH_SECTION, prefixedReleaseName, ConfigConstants.CONFIG_KEY_MERGE, Constants.R_HEADS + prefixedReleaseName); config.save(); } return newBranch; } catch (GitAPIException e) { throw new JGitFlowGitAPIException(e); } catch (IOException e) { throw new JGitFlowIOException(e); } finally { reporter.flush(); } } /** * Set whether to perform a git fetch of the remote develop branch before branching * @param fetch * true to do the fetch, false(default) otherwise * @return {@code this} */ public ReleaseStartCommand setFetch(boolean fetch) { this.fetch = fetch; return this; } /** * Set whether to push the changes to the remote repository * * @param push true to do the push, false(default) otherwise * @return {@code this} */ public ReleaseStartCommand setPush(boolean push) { this.push = push; return this; } public ReleaseStartCommand setStartCommit(String commitId) { this.startCommitString = commitId; return this; } public ReleaseStartCommand setStartCommit(RevCommit commit) { this.startCommit = commit; return this; } @Override protected String getCommandName() { return SHORT_NAME; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy