summaryrefslogtreecommitdiff
path: root/check-files.c
AgeCommit message (Collapse)AuthorFilesLines
2005-08-03Retire check-files.Libravatar Junio C Hamano1-47/+0
The king penguin said: It has no point any more, all the tools check the file status on their own, and yes, the thing should probably be removed. and the faithful servant makes it so. Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-05-15Rename cache_match_stat() to ce_match_stat()Libravatar Brad Roberts1-1/+1
Signed-off-by: Brad Roberts <braddr@puremagic.com> Signed-off-by: Petr Baudis <pasky@ucw.cz>
2005-05-05[PATCH] git and symlinks as tracked contentLibravatar Kay Sievers1-2/+2
Allow to store and track symlink in the repository. A symlink is stored the same way as a regular file, only with the appropriate mode bits set. The symlink target is therefore stored in a blob object. This will hopefully make our udev repository fully functional. :) Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-04-13[PATCH] Consolidate the error handlingLibravatar Petr Baudis1-4/+4
Now there is error() for "library" errors and die() for fatal "application" errors. usage() is now used strictly only for usage errors. Signed-off-by: Petr Baudis <pasky@ucw.cz>
2005-04-12Add a "check-files" command, which is useful for scriptingLibravatar Linus Torvalds1-0/+47
patches. In particular, it verifies that all the listed files are up-to-date in the cache (or don't exist and are ready to be added).