• B
    prune.c: only print informational message in show_only or verbose mode · 90b29cb7
    Brandon Casey 提交于
    "git prune" reports removal of loose object files that are no longer
    necessary only under the "-v" option, but unconditionally reports
    removal of temporary files that are no longer needed.
    
    The original thinking was that the presence of a leftover temporary
    file should be an unusual occurrence that may indicate an earlier
    failure of some sort, and the user may want to be reminded of it.
    Removing an unnecessary loose object file, on the other hand, is
    just part of the normal operation.  That is why the former is always
    printed out and the latter only when -v is used.
    
    But neither report is particularly useful.  Hide both of these
    behind the "-v" option for consistency.
    Signed-off-by: NBrandon Casey <drafnel@gmail.com>
    Signed-off-by: NJunio C Hamano <gitster@pobox.com>
    90b29cb7
prune.c 4.1 KB