New config constant for default start-point

This constant determine the default start-point, if the user
don't want to create a branch from the current HEAD.

Change-Id: Iea944e11e80134fbafc4c47383457d5ed11a4164
Signed-off-by: Manuel Doninger <manuel.doninger@googlemail.com>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
This commit is contained in:
Manuel Doninger 2011-09-08 19:37:11 +02:00 committed by Chris Aniszczyk
parent 37e4019fd9
commit 458b5a4042
1 changed files with 6 additions and 0 deletions

View File

@ -66,6 +66,9 @@ public class ConfigConstants {
/** The "gerrit" section */
public static final String CONFIG_GERRIT_SECTION = "gerrit";
/** The "workflow" section */
public static final String CONFIG_WORKFLOW_SECTION = "workflow";
/** The "algorithm" key */
public static final String CONFIG_KEY_ALGORITHM = "algorithm";
@ -133,4 +136,7 @@ public class ConfigConstants {
/** The "createchangeid" key */
public static final String CONFIG_KEY_CREATECHANGEID = "createchangeid";
/** The "defaultsourceref" key */
public static final String CONFIG_KEY_DEFBRANCHSTARTPOINT = "defbranchstartpoint";
}