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>
This commit is contained in:

committed by
Junio C Hamano

parent
41698375ad
commit
f7835a251c
21
copy.c
21
copy.c
@ -35,6 +35,19 @@ int copy_fd(int ifd, int ofd)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int copy_times(const char *dst, const char *src)
|
||||
{
|
||||
struct stat st;
|
||||
struct utimbuf times;
|
||||
if (stat(src, &st) < 0)
|
||||
return -1;
|
||||
times.actime = st.st_atime;
|
||||
times.modtime = st.st_mtime;
|
||||
if (utime(dst, ×) < 0)
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int copy_file(const char *dst, const char *src, int mode)
|
||||
{
|
||||
int fdi, fdo, status;
|
||||
@ -55,3 +68,11 @@ int copy_file(const char *dst, const char *src, int mode)
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
int copy_file_with_time(const char *dst, const char *src, int mode)
|
||||
{
|
||||
int status = copy_file(dst, src, mode);
|
||||
if (!status)
|
||||
return copy_times(dst, src);
|
||||
return status;
|
||||
}
|
||||
|
Reference in New Issue
Block a user