Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.gitflow/src/org/eclipse/egit/gitflow/op/AbstractHotfixOperation.java')
-rw-r--r--org.eclipse.egit.gitflow/src/org/eclipse/egit/gitflow/op/AbstractHotfixOperation.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/org.eclipse.egit.gitflow/src/org/eclipse/egit/gitflow/op/AbstractHotfixOperation.java b/org.eclipse.egit.gitflow/src/org/eclipse/egit/gitflow/op/AbstractHotfixOperation.java
new file mode 100644
index 0000000000..3fdb3b41d0
--- /dev/null
+++ b/org.eclipse.egit.gitflow/src/org/eclipse/egit/gitflow/op/AbstractHotfixOperation.java
@@ -0,0 +1,48 @@
+/*******************************************************************************
+ * Copyright (C) 2015, Max Hohenegger <eclipse@hohenegger.eu>
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *******************************************************************************/
+package org.eclipse.egit.gitflow.op;
+
+import java.io.IOException;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.egit.gitflow.GitFlowRepository;
+import org.eclipse.egit.gitflow.WrongGitFlowStateException;
+import org.eclipse.egit.gitflow.internal.CoreText;
+
+/**
+ * Common logic for hotfix branch operations.
+ */
+abstract public class AbstractHotfixOperation extends
+ AbstractVersionFinishOperation {
+ /**
+ * @param repository
+ * @param hotfixName
+ */
+ public AbstractHotfixOperation(GitFlowRepository repository,
+ String hotfixName) {
+ super(repository, hotfixName);
+ }
+
+ /**
+ * @param repository
+ * @return current hotfix branch name
+ * @throws WrongGitFlowStateException
+ * @throws CoreException
+ * @throws IOException
+ */
+ protected static String getHotfixName(GitFlowRepository repository)
+ throws WrongGitFlowStateException, CoreException, IOException {
+ if (!repository.isHotfix()) {
+ throw new WrongGitFlowStateException(
+ CoreText.AbstractHotfixOperation_notOnAHotfixBranch);
+ }
+ String currentBranch = repository.getRepository().getBranch();
+ return currentBranch.substring(repository.getConfig().getHotfixPrefix().length());
+ }
+}

Back to the top