Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Don't try to delta if target is much smaller than source
[gitweb.git]
/
path.c
diff --git
a/path.c
b/path.c
index c5d25a4b903bd92930df4004d30d4dffa6054456..c4ce96236ae043b4d997536174936abb6ac40207 100644
(file)
--- a/
path.c
+++ b/
path.c
@@
-252,7
+252,7
@@
char *enter_repo(char *path, int strict)
if (access("objects", X_OK) == 0 && access("refs", X_OK) == 0 &&
validate_headref("HEAD") == 0) {
-
putenv("GIT_DIR=."
);
+
setenv(GIT_DIR_ENVIRONMENT, ".", 1
);
check_repository_format();
return path;
}