|
|
@ -60,7 +60,7 @@ public class CoreConfig { |
|
|
|
public static final Config.SectionParser<CoreConfig> KEY = CoreConfig::new; |
|
|
|
public static final Config.SectionParser<CoreConfig> KEY = CoreConfig::new; |
|
|
|
|
|
|
|
|
|
|
|
/** Permissible values for {@code core.autocrlf}. */ |
|
|
|
/** Permissible values for {@code core.autocrlf}. */ |
|
|
|
public static enum AutoCRLF { |
|
|
|
public enum AutoCRLF { |
|
|
|
/** Automatic CRLF->LF conversion is disabled. */ |
|
|
|
/** Automatic CRLF->LF conversion is disabled. */ |
|
|
|
FALSE, |
|
|
|
FALSE, |
|
|
|
|
|
|
|
|
|
|
@ -78,7 +78,7 @@ public class CoreConfig { |
|
|
|
* |
|
|
|
* |
|
|
|
* @since 4.3 |
|
|
|
* @since 4.3 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static enum EOL { |
|
|
|
public enum EOL { |
|
|
|
/** Check in with LF, check out with CRLF. */ |
|
|
|
/** Check in with LF, check out with CRLF. */ |
|
|
|
CRLF, |
|
|
|
CRLF, |
|
|
|
|
|
|
|
|
|
|
@ -94,7 +94,7 @@ public class CoreConfig { |
|
|
|
* |
|
|
|
* |
|
|
|
* @since 4.3 |
|
|
|
* @since 4.3 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static enum EolStreamType { |
|
|
|
public enum EolStreamType { |
|
|
|
/** Convert to CRLF without binary detection. */ |
|
|
|
/** Convert to CRLF without binary detection. */ |
|
|
|
TEXT_CRLF, |
|
|
|
TEXT_CRLF, |
|
|
|
|
|
|
|
|
|
|
@ -116,7 +116,7 @@ public class CoreConfig { |
|
|
|
* |
|
|
|
* |
|
|
|
* @since 3.0 |
|
|
|
* @since 3.0 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static enum CheckStat { |
|
|
|
public enum CheckStat { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* Only check the size and whole second part of time stamp when |
|
|
|
* Only check the size and whole second part of time stamp when |
|
|
|
* comparing the stat info in the dircache with actual file stat info. |
|
|
|
* comparing the stat info in the dircache with actual file stat info. |
|
|
@ -135,7 +135,7 @@ public class CoreConfig { |
|
|
|
* |
|
|
|
* |
|
|
|
* @since 5.6 |
|
|
|
* @since 5.6 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static enum LogRefUpdates { |
|
|
|
public enum LogRefUpdates { |
|
|
|
/** Don't create ref logs; default for bare repositories. */ |
|
|
|
/** Don't create ref logs; default for bare repositories. */ |
|
|
|
FALSE, |
|
|
|
FALSE, |
|
|
|
|
|
|
|
|
|
|
@ -164,7 +164,7 @@ public class CoreConfig { |
|
|
|
* |
|
|
|
* |
|
|
|
* @since 3.3 |
|
|
|
* @since 3.3 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static enum SymLinks { |
|
|
|
public enum SymLinks { |
|
|
|
/** Check out symbolic links as plain files . */ |
|
|
|
/** Check out symbolic links as plain files . */ |
|
|
|
FALSE, |
|
|
|
FALSE, |
|
|
|
|
|
|
|
|
|
|
@ -177,7 +177,7 @@ public class CoreConfig { |
|
|
|
* |
|
|
|
* |
|
|
|
* @since 3.5 |
|
|
|
* @since 3.5 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static enum HideDotFiles { |
|
|
|
public enum HideDotFiles { |
|
|
|
/** Do not hide .files. */ |
|
|
|
/** Do not hide .files. */ |
|
|
|
FALSE, |
|
|
|
FALSE, |
|
|
|
|
|
|
|
|
|
|
|