diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2005-11-08 09:23:37 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-08 01:23:52 -0800 |
commit | 39b4ac99686148d356f7ba3c0132eb55dfda4726 (patch) | |
tree | cc093fc05d8144c03ec16f8e56195043dd150bce /ls-files.c | |
parent | 76bca9d1a95c0fbf9e31bcb7b6a52e1d318577e7 (diff) | |
download | git-39b4ac99686148d356f7ba3c0132eb55dfda4726.tar.gz |
ls-files and read-tree need core.filemode
ls-files.c and read-tree.c miss the default configuration, in
particular the filemode=false part. The recent +x bit flip made me
notice that, because git-merge refused to merge anything saying that
git-pull.sh is not up to date.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'ls-files.c')
-rw-r--r-- | ls-files.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ls-files.c b/ls-files.c index f7653e7d32..db2288aeee 100644 --- a/ls-files.c +++ b/ls-files.c @@ -570,6 +570,7 @@ int main(int argc, const char **argv) prefix = setup_git_directory(); if (prefix) prefix_offset = strlen(prefix); + git_config(git_default_config); for (i = 1; i < argc; i++) { const char *arg = argv[i]; |