summaryrefslogtreecommitdiff
path: root/update-index.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2006-04-24 21:28:07 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2006-04-24 21:28:07 -0700
commitdc844aaad83ede855fccc9af9b555796c9c758ad (patch)
tree4d538b75adbd4c205addcea9c04dcf1beb44da94 /update-index.c
parentMerge branch 'master' into next (diff)
parentindex: make the index file format extensible. (diff)
downloadtgif-dc844aaad83ede855fccc9af9b555796c9c758ad.tar.xz
Merge branch 'jc/cache-tree' into next
* jc/cache-tree: index: make the index file format extensible. cache-tree: protect against "git prune". Add test-dump-cache-tree
Diffstat (limited to 'update-index.c')
-rw-r--r--update-index.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/update-index.c b/update-index.c
index ea1a377057..157488ff1a 100644
--- a/update-index.c
+++ b/update-index.c
@@ -7,12 +7,8 @@
#include "strbuf.h"
#include "quote.h"
#include "tree-walk.h"
-#include "tree.h"
#include "cache-tree.h"
-static unsigned char active_cache_sha1[20];
-static struct cache_tree *active_cache_tree;
-
/*
* Default to not allowing changes to the list of files. The
* tool doesn't actually care, but this makes it harder to add
@@ -625,10 +621,9 @@ int main(int argc, const char **argv)
if (newfd < 0)
die("unable to create new cachefile");
- entries = read_cache_1(active_cache_sha1);
+ entries = read_cache();
if (entries < 0)
die("cache corrupted");
- active_cache_tree = read_cache_tree(active_cache_sha1);
for (i = 1 ; i < argc; i++) {
const char *path = argv[i];
@@ -767,11 +762,9 @@ int main(int argc, const char **argv)
finish:
if (active_cache_changed) {
- if (write_cache_1(newfd, active_cache, active_nr,
- active_cache_sha1) ||
+ if (write_cache(newfd, active_cache, active_nr) ||
commit_index_file(&cache_file))
die("Unable to write new cachefile");
- write_cache_tree(active_cache_sha1, active_cache_tree);
}
return has_errors ? 1 : 0;