Browse Source

Merge "Expose some constants needed for reading the Pull configuration"

tags/v0.11.1
Chris Aniszczyk 13 years ago
parent
commit
f265a80d2e
1 changed files with 20 additions and 0 deletions
  1. 20
    0
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

+ 20
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java View File

@@ -99,9 +99,29 @@ public class ConfigConstants {
/** The "autosetupmerge" key */
public static final String CONFIG_KEY_AUTOSETUPMERGE = "autosetupmerge";

/** The "autosetuprebase" key */
public static final String CONFIG_KEY_AUTOSETUPREBASE = "autosetuprebase";
/** The "name" key */
public static final String CONFIG_KEY_NAME = "name";

/** The "email" key */
public static final String CONFIG_KEY_EMAIL = "email";

/** The "false" key (used to configure {@link #CONFIG_KEY_AUTOSETUPMERGE} */
public static final String CONFIG_KEY_FALSE = "false";

/** The "true" key (used to configure {@link #CONFIG_KEY_AUTOSETUPMERGE} */
public static final String CONFIG_KEY_TRUE = "true";

/**
* The "always" key (used to configure {@link #CONFIG_KEY_AUTOSETUPREBASE}
* and {@link #CONFIG_KEY_AUTOSETUPMERGE}
*/
public static final String CONFIG_KEY_ALWAYS = "always";

/** The "never" key (used to configure {@link #CONFIG_KEY_AUTOSETUPREBASE} */
public static final String CONFIG_KEY_NEVER = "never";

/** The "local" key (used to configure {@link #CONFIG_KEY_AUTOSETUPREBASE} */
public static final String CONFIG_KEY_LOCAL = "local";
}

Loading…
Cancel
Save