mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-21 15:07:23 +00:00
Use 'X' for unreadable status.
This commit is contained in:
parent
66271925a1
commit
59fcebaa89
@ -82,6 +82,9 @@ int cb_status__print(
|
||||
if (status_flags & GIT_STATUS_IGNORED) {
|
||||
wstatus = 'I'; wcount++;
|
||||
}
|
||||
if (status_flags & GIT_STATUS_WT_UNREADABLE) {
|
||||
wstatus = 'X'; wcount++;
|
||||
}
|
||||
|
||||
fprintf(stderr, "%c%c %s (%d/%d%s)\n",
|
||||
istatus, wstatus, path, icount, wcount,
|
||||
|
Loading…
Reference in New Issue
Block a user