Package com.atlassian.jgitflow.core.extension.impl

Examples of com.atlassian.jgitflow.core.extension.impl.EmptyReleaseStartExtension


     * @throws com.atlassian.jgitflow.core.exception.RemoteBranchExistsException
     */
    @Override
    public Void call() throws NotInitializedException, JGitFlowGitAPIException, DirtyWorkingTreeException, JGitFlowIOException, LocalBranchMissingException, RemoteBranchExistsException, JGitFlowExtensionException
    {
        JGitFlowExtension extension = new EmptyReleaseStartExtension();

        String prefixedBranchName = runBeforeAndGetPrefixedBranchName(extension.before(), JGitFlowConstants.PREFIXES.RELEASE);
        enforcer().requireGitFlowInitialized();
        enforcer().requireCleanWorkingTree(isAllowUntracked());
        enforcer().requireLocalBranchExists(prefixedBranchName);

        try
View Full Code Here


     * @param reporter
     */
    public ReleaseStartCommand(String releaseName, Git git, GitFlowConfiguration gfConfig, JGitFlowReporter reporter)
    {
        super(releaseName, git, gfConfig, reporter);
        this.extension = new EmptyReleaseStartExtension();

    }
View Full Code Here

TOP

Related Classes of com.atlassian.jgitflow.core.extension.impl.EmptyReleaseStartExtension

Copyright © 2018 www.massapicom. 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.