diff options
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java')
-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"; } |