summaryrefslogtreecommitdiff
path: root/prune-packed.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2005-10-28 16:45:53 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-10-28 21:25:02 (GMT)
commit41f222e87a9062833712367d66114cae90b3769a (patch)
tree2558e290f84cfd0a5a324e8da0cfda2ac30ae0c1 /prune-packed.c
parent50b8e355b64c93a71d5008557e15f52c032240ff (diff)
downloadgit-41f222e87a9062833712367d66114cae90b3769a.zip
git-41f222e87a9062833712367d66114cae90b3769a.tar.gz
git-41f222e87a9062833712367d66114cae90b3769a.tar.bz2
Be marginally more careful about removing objects
The git philosophy when it comes to disk accesses is "Laugh in the face of danger". Notably, since we never modify an existing object, we don't really care that deeply about flushing things to disk, since even if the machine crashes in the middle of a git operation, you can never really have lost any old work. At most, you'd need to figure out the proper heads (which git-fsck-objects can do for you) and re-do the operation. However, there's two exceptions to this: pruning and repacking. Those operations will actually _delete_ old objects that they know about in other ways (ie that they just repacked, or that they have found in other places). However, since they actually modify old state, we should thus be a bit more careful about them. If the machine crashes and the duplicate new objects haven't been flushed to disk, you can actually be in trouble. This is trivially stupid about it by calling "sync" before removing the objects. Not very smart, but we're talking about special operations than are usually done once a week if that. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'prune-packed.c')
-rw-r--r--prune-packed.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/prune-packed.c b/prune-packed.c
index 16685d1..26123f7 100644
--- a/prune-packed.c
+++ b/prune-packed.c
@@ -71,6 +71,7 @@ int main(int argc, char **argv)
/* Handle arguments here .. */
usage(prune_packed_usage);
}
+ sync();
prune_packed_objects();
return 0;
}