OSDN Git Service

Call refresh_cache() when updating the user index for --only commits.
authorKristian Høgsberg <krh@redhat.com>
Mon, 12 Nov 2007 20:48:22 +0000 (15:48 -0500)
committerJunio C Hamano <gitster@pobox.com>
Fri, 23 Nov 2007 01:05:03 +0000 (17:05 -0800)
We're guaranteeing the user that the index will be stat-clean after
git commit. Thus, we need to call refresh_cache() for the user index too,
in the 'git commit <paths>' case.

Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-commit.c

index 2233300..ee9fe72 100644 (file)
@@ -109,6 +109,7 @@ static char *prepare_index(const char **files, const char *prefix)
 
        /* update the user index file */
        add_files_to_cache(verbose, prefix, files);
+       refresh_cache(REFRESH_QUIET);
        if (write_cache(fd, active_cache, active_nr) || close(fd))
                die("unable to write new_index file");