Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git svn: strip leading path when making empty dirs
[gitweb.git]
/
config.c
diff --git
a/config.c
b/config.c
index c64406113686e8886c0719206ce57d73fee13b29..51f22088e7e20c6928986cc9597a1ebd5a10807e 100644
(file)
--- a/
config.c
+++ b/
config.c
@@
-467,6
+467,11
@@
static int git_default_core_config(const char *var, const char *value)
return 0;
}
+ if (!strcmp(var, "core.notesref")) {
+ notes_ref_name = xstrdup(value);
+ return 0;
+ }
+
if (!strcmp(var, "core.pager"))
return git_config_string(&pager_program, var, value);