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 7a7fc888f..45e77b1c1 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java @@ -1,5 +1,6 @@ /* * Copyright (C) 2010, Mathias Kinzler + * Copyright (C) 2010, Chris Aniszczyk * and other copyright owners as documented in the project's IP log. * * This program and the accompanying materials are made available @@ -50,6 +51,9 @@ public class ConfigConstants { /** The "core" section */ public static final String CONFIG_CORE_SECTION = "core"; + /** The "branch" section */ + public static final String CONFIG_BRANCH_SECTION = "branch"; + /** The "autocrlf" key */ public static final String CONFIG_KEY_AUTOCRLF = "autocrlf"; @@ -67,4 +71,14 @@ public class ConfigConstants { /** The "worktree" key */ public static final String CONFIG_KEY_WORKTREE = "worktree"; + + /** The "remote" key */ + public static final String CONFIG_KEY_REMOTE = "remote"; + + /** The "merge" key */ + public static final String CONFIG_KEY_MERGE = "merge"; + + /** The "rebase" key */ + public static final String CONFIG_KEY_REBASE = "rebase"; + }