From 47e9e165b8f070959a1b361a3d79ba82559c0dde Mon Sep 17 00:00:00 2001 From: Chris Aniszczyk Date: Wed, 6 Oct 2010 11:46:13 -0500 Subject: [PATCH] Add pull operation related constants Change-Id: Idb7526800e80e17624ec05fb10bbc19e7f744f49 Signed-off-by: Chris Aniszczyk --- .../src/org/eclipse/jgit/lib/ConfigConstants.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 7a7fc888f2..45e77b1c17 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"; + } -- 2.39.5