Thread (30 messages) flat view 30 messages, 4 authors, 2016-06-15

Re: [PATCH 05/13] delete_refs(): improve error message

From: Junio C Hamano <hidden>
Date: 2016-06-15 23:05:14

Michael Haggerty [off-list ref] writes:
Change the error message from

    Could not remove branch %s

to

    Could not remove reference %s

This change makes sense even for the existing caller, which uses the
function to delete remote-tracking branches.
I am 80% convinced ;-)

The existing caller never used this for removing tags, so 'could not
remove branch' was equally correct for it and was more specific than
'could not remove reference'.  If you change it to 'could not remove
that thing %s', it would still be correct for the existing caller;
it would be even less specific for them, though ;-)

The new callers you will add in later patch of course cannot live
with 'could not remove branch', so I think that this is an
acceptable compromise we can live with.  If somebody later wants to
make the message more specific, they can add code that switches on
the prefix of the ref when coming up with the error message (and use
that code consistently in other error messages e.g. 'could not add
reference').
quoted hunk ↗ jump to hunk
Signed-off-by: Michael Haggerty <redacted>
---
 refs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/refs.c b/refs.c
index c413282..2a2a06d 100644
--- a/refs.c
+++ b/refs.c
@@ -2827,7 +2827,7 @@ int delete_refs(struct string_list *refnames)
 		const char *refname = refnames->items[i].string;
 
 		if (delete_ref(refname, NULL, 0))
-			result |= error(_("Could not remove branch %s"), refname);
+			result |= error(_("Could not remove reference %s"), refname);
 	}
 
 	return result;
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help