Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
SubmittingPatches: itemize and reflect upon well written changes
[gitweb.git]
/
config.c
diff --git
a/config.c
b/config.c
index 8c1ae598a98ed013be61ccf64170b21924186f5f..1750cfb85e34214533af13069853b7159cead2e8 100644
(file)
--- a/
config.c
+++ b/
config.c
@@
-495,6
+495,11
@@
static int git_default_core_config(const char *var, const char *value)
return 0;
}
+ if (!strcmp(var, "core.unreliablehardlinks")) {
+ unreliable_hardlinks = git_config_bool(var, value);
+ return 0;
+ }
+
/* Add other config variables here and to Documentation/config.txt. */
return 0;
}