MCPcopy Create free account
hub / github.com/git/git / wt_status_unmerged_status_string

Function wt_status_unmerged_status_string

wt-status.c:282–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282static const char *wt_status_unmerged_status_string(int stagemask)
283{
284 switch (stagemask) {
285 case 1:
286 return _("both deleted:");
287 case 2:
288 return _("added by us:");
289 case 3:
290 return _("deleted by them:");
291 case 4:
292 return _("added by them:");
293 case 5:
294 return _("deleted by us:");
295 case 6:
296 return _("both added:");
297 case 7:
298 return _("both modified:");
299 default:
300 BUG("unhandled unmerged status %x", stagemask);
301 }
302}
303
304static const char *wt_status_diff_status_string(int status)
305{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected