diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-13 13:02:52 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-17 09:14:59 -0700 |
commit | 0a489b0680b841d3e7714be53b263ff190c39193 (patch) | |
tree | f340f2070351a966d7a5e7dfa495514642460a1f /path.c | |
parent | Sync with 2.4.8 (diff) | |
download | tgif-0a489b0680b841d3e7714be53b263ff190c39193.tar.xz |
prepare_packed_git(): refactor garbage reporting in pack directory
The hook to report "garbage" files in $GIT_OBJECT_DIRECTORY/pack/
could be generic but is too specific to count-object's needs.
Move the part to produce human-readable messages to count-objects,
and refine the interface to callback with the "bits" with values
defined in the cache.h header file, so that other callers (e.g.
prune) can later use the same mechanism to enumerate different
kinds of garbage files and do something intelligent about them,
other than reporting in textual messages.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
-rw-r--r-- | path.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -143,7 +143,7 @@ void report_linked_checkout_garbage(void) strbuf_setlen(&sb, len); strbuf_addstr(&sb, path); if (file_exists(sb.buf)) - report_garbage("unused in linked checkout", sb.buf); + report_garbage(PACKDIR_FILE_GARBAGE, sb.buf); } strbuf_release(&sb); } |