Browse Source

Add pull operation related constants

Change-Id: Idb7526800e80e17624ec05fb10bbc19e7f744f49
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
stable-0.10
Chris Aniszczyk 14 years ago
parent
commit
47e9e165b8
  1. 14
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

14
org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java

@ -1,5 +1,6 @@
/*
* Copyright (C) 2010, Mathias Kinzler <mathias.kinzler@sap.com>
* Copyright (C) 2010, Chris Aniszczyk <caniszczyk@gmail.com>
* 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";
}

Loading…
Cancel
Save