diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-03-21 10:16:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-21 12:43:10 -0700 |
commit | ccdc4ec3044bd108ae1e20d772f078c10df114b3 (patch) | |
tree | 54b78634ed72b83854ff5d9564a76ec6020e7d73 /cache.h | |
parent | Git 1.7.3 (diff) | |
download | tgif-ccdc4ec3044bd108ae1e20d772f078c10df114b3.tar.xz |
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 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -520,6 +520,7 @@ extern NORETURN void unable_to_lock_index_die(const char *path, int err); extern int hold_lock_file_for_update(struct lock_file *, const char *path, int); extern int hold_lock_file_for_append(struct lock_file *, const char *path, int); extern int commit_lock_file(struct lock_file *); +extern void update_index_if_able(struct index_state *, struct lock_file *); extern int hold_locked_index(struct lock_file *, int); extern int commit_locked_index(struct lock_file *); |