mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-21 20:34:17 +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) {
|
if (status_flags & GIT_STATUS_IGNORED) {
|
||||||
wstatus = 'I'; wcount++;
|
wstatus = 'I'; wcount++;
|
||||||
}
|
}
|
||||||
|
if (status_flags & GIT_STATUS_WT_UNREADABLE) {
|
||||||
|
wstatus = 'X'; wcount++;
|
||||||
|
}
|
||||||
|
|
||||||
fprintf(stderr, "%c%c %s (%d/%d%s)\n",
|
fprintf(stderr, "%c%c %s (%d/%d%s)\n",
|
||||||
istatus, wstatus, path, icount, wcount,
|
istatus, wstatus, path, icount, wcount,
|
||||||
|
Loading…
Reference in New Issue
Block a user