diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-15 14:23:12 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-19 09:50:57 -0700 |
commit | 415e96c8b7e7d47f98a45ae1b6d524418245a3b4 (patch) | |
tree | 08f5f8433a6d56642b64fe9ab941647da6c8aef5 /Makefile | |
parent | 875d0f8ddb1d420f6465498842740c4f5ab03e6f (diff) | |
download | git-415e96c8b7e7d47f98a45ae1b6d524418245a3b4.tar.gz |
[PATCH] Implement git-checkout-cache -u to update stat information in the cache.
With -u flag, git-checkout-cache picks up the stat information
from newly created file and updates the cache. This removes the
need to run git-update-cache --refresh immediately after running
git-checkout-cache.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ install: $(PROG) $(SCRIPTS) $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin) LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \ - tag.o date.o diff-delta.o patch-delta.o + tag.o date.o index.o diff-delta.o patch-delta.o LIB_FILE=libgit.a LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h |