diff options
author | Manuel Doninger <manuel.doninger@googlemail.com> | 2011-09-08 19:37:11 +0200 |
---|---|---|
committer | Chris Aniszczyk <zx@twitter.com> | 2011-09-30 14:42:44 -0700 |
commit | 458b5a4042e2aa2edc48ea596a4079fe5012bae3 (patch) | |
tree | f6720c43e83eed7e8801ecb0fcc7247d22be049a /org.eclipse.jgit/src/org/eclipse/jgit/lib | |
parent | 37e4019fd98a213f3950b2a53efe95f73fda1c1b (diff) | |
download | jgit-458b5a4042e2aa2edc48ea596a4079fe5012bae3.tar.gz jgit-458b5a4042e2aa2edc48ea596a4079fe5012bae3.zip |
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>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java index 411782ffc7..e2c23db7df 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java @@ -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"; } |