]> source.dussan.org Git - jgit.git/commitdiff
New config constant for default start-point 68/4168/4
authorManuel Doninger <manuel.doninger@googlemail.com>
Thu, 8 Sep 2011 17:37:11 +0000 (19:37 +0200)
committerChris Aniszczyk <zx@twitter.com>
Fri, 30 Sep 2011 21:42:44 +0000 (14:42 -0700)
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>
org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

index 411782ffc7a787e80319ac3c37873d8486e88df8..e2c23db7dfff91d171db5fe291079a234abf0f34 100644 (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";
 }