blob: cb8bd0d5a00749c1aab202783447d5c4341f7fdc [file] [log] [blame]
/*******************************************************************************
* 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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.egit.gitflow;
/**
* Git flow branch names and prefixes.
*/
public final class GitFlowDefaults {
/** */
private static final String FEATURE = "feature"; //$NON-NLS-1$
/** */
private static final String RELEASE = "release"; //$NON-NLS-1$
/** */
private static final String HOTFIX = "hotfix"; //$NON-NLS-1$
/** */
public static final String MASTER = "master"; //$NON-NLS-1$
/** */
public static final String DEVELOP = "develop"; //$NON-NLS-1$
/** */
private static final String SLASH = "/"; //$NON-NLS-1$
/** */
public static final String FEATURE_PREFIX = FEATURE + SLASH;
/** */
public static final String RELEASE_PREFIX = RELEASE + SLASH;
/** */
public static final String HOTFIX_PREFIX = HOTFIX + SLASH;
/** */
public static final String VERSION_TAG = ""; //$NON-NLS-1$
}