Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Lay2011-04-14 15:25:22 +0000
committerMatthias Sohn2011-04-14 19:57:22 +0000
commitce2de7db4c5f9e5a507f26455b144a6f58978d7e (patch)
tree62be3012a9e534513c4ebbb7728804acb81f2966
parentb69284f72d717f50981c822edbff1dc3313cdd58 (diff)
downloadjgit-ce2de7db4c5f9e5a507f26455b144a6f58978d7e.tar.gz
jgit-ce2de7db4c5f9e5a507f26455b144a6f58978d7e.tar.xz
jgit-ce2de7db4c5f9e5a507f26455b144a6f58978d7e.zip
Add constants for gerrit change id configuration
Change-Id: I22fc46dff6cc5dfd975f6e82161d265781778cde Signed-off-by: Stefan Lay <stefan.lay@sap.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java6
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 7e4cb3bee2..411782ffc7 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java
@@ -63,6 +63,9 @@ public class ConfigConstants {
/** The "user" section */
public static final String CONFIG_USER_SECTION = "user";
+ /** The "gerrit" section */
+ public static final String CONFIG_GERRIT_SECTION = "gerrit";
+
/** The "algorithm" key */
public static final String CONFIG_KEY_ALGORITHM = "algorithm";
@@ -127,4 +130,7 @@ public class ConfigConstants {
/** The "local" key (used to configure {@link #CONFIG_KEY_AUTOSETUPREBASE} */
public static final String CONFIG_KEY_LOCAL = "local";
+
+ /** The "createchangeid" key */
+ public static final String CONFIG_KEY_CREATECHANGEID = "createchangeid";
}

Back to the top