summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorClemens Buchacher <drizzd@aon.at>2009-09-12 09:03:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-09-13 08:32:26 (GMT)
commitf7835a251c2c98df152792b15793b03e22bf078e (patch)
tree0fd7e28732e775adfd11b511ab226dc76a8fdb33 /cache.h
parent41698375ada57d51cf6db5cf25970ccd1b918180 (diff)
downloadgit-f7835a251c2c98df152792b15793b03e22bf078e.zip
git-f7835a251c2c98df152792b15793b03e22bf078e.tar.gz
git-f7835a251c2c98df152792b15793b03e22bf078e.tar.bz2
preserve mtime of local clone
A local clone without hardlinks copies all objects, including dangling ones, to the new repository. Since the mtimes are renewed, those dangling objects cannot be pruned by "git gc --prune", even if they would have been old enough for pruning in the original repository. Instead, preserve mtime during copy. "git gc --prune" will then work in the clone just like it did in the original. Signed-off-by: Clemens Buchacher <drizzd@aon.at> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 867918d..1668f28 100644
--- a/cache.h
+++ b/cache.h
@@ -923,6 +923,7 @@ extern const char *git_mailmap_file;
extern void maybe_flush_or_die(FILE *, const char *);
extern int copy_fd(int ifd, int ofd);
extern int copy_file(const char *dst, const char *src, int mode);
+extern int copy_file_with_time(const char *dst, const char *src, int mode);
extern void write_or_die(int fd, const void *buf, size_t count);
extern int write_or_whine(int fd, const void *buf, size_t count, const char *msg);
extern int write_or_whine_pipe(int fd, const void *buf, size_t count, const char *msg);