summaryrefslogtreecommitdiff
path: root/builtin/commit.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-03-21 10:16:10 -0700
committerJunio C Hamano <gitster@pobox.com>2011-03-21 12:43:10 -0700
commitccdc4ec3044bd108ae1e20d772f078c10df114b3 (patch)
tree54b78634ed72b83854ff5d9564a76ec6020e7d73 /builtin/commit.c
parent87b50542a08ac6caa083ddc376e674424e37940a (diff)
downloadgit-ccdc4ec3044bd108ae1e20d772f078c10df114b3.tar.gz
diff/status: refactor opportunistic index update
When we had to refresh the index internally before running diff or status, we opportunistically updated the $GIT_INDEX_FILE so that later invocation of git can use the lstat(2) we already did in this invocation. Make them share a helper function to do so. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r--builtin/commit.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index 66fdd22024..0b6ce2fa37 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -1090,13 +1090,8 @@ int cmd_status(int argc, const char **argv, const char *prefix)
refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, s.pathspec, NULL, NULL);
fd = hold_locked_index(&index_lock, 0);
- if (0 <= fd) {
- if (active_cache_changed &&
- !write_cache(fd, active_cache, active_nr))
- commit_locked_index(&index_lock);
- else
- rollback_lock_file(&index_lock);
- }
+ if (0 <= fd)
+ update_index_if_able(&the_index, &index_lock);
s.is_initial = get_sha1(s.reference, sha1) ? 1 : 0;
s.in_merge = in_merge;