summaryrefslogtreecommitdiff
path: root/check-files.c
Commit message (Collapse)AuthorAgeFilesLines
* Retire check-files.Junio C Hamano2005-08-031-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>
* Rename cache_match_stat() to ce_match_stat()Brad Roberts2005-05-151-1/+1
| | | | | Signed-off-by: Brad Roberts <braddr@puremagic.com> Signed-off-by: Petr Baudis <pasky@ucw.cz>
* [PATCH] git and symlinks as tracked contentKay Sievers2005-05-051-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>
* [PATCH] Consolidate the error handlingPetr Baudis2005-04-131-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>
* Add a "check-files" command, which is useful for scriptingLinus Torvalds2005-04-121-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).