diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-01-26 08:54:45 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-01-26 08:54:45 -0800 |
commit | 951eafe36fcb1c14851e6b51302cc0bad51fc046 (patch) | |
tree | 8983103f21044f24dc20e1a2bfa0750604480f6c /builtin/send-pack.c | |
parent | e02ecfcc534e2021aae29077a958dd11c3897e4c (diff) | |
parent | 80bdaba894b9868a74fa5931e3ce1ca074353b24 (diff) |
Merge branch 'es/some-up-to-date-messages-must-stay'
Comment updates to help developers not to attempt to modify
messages from plumbing commands that must stay constant.
It might make sense to reassess the plumbing needs every few years,
but that should be done as a separate effort.
* es/some-up-to-date-messages-must-stay:
messages: mark some strings with "up-to-date" not to touch
Diffstat (limited to 'builtin/send-pack.c')
-rw-r--r-- | builtin/send-pack.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/send-pack.c b/builtin/send-pack.c index b7183be970..3df9eaad09 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -333,6 +333,7 @@ int cmd_send_pack(int argc, const char **argv, const char *prefix) } if (!ret && !transport_refs_pushed(remote_refs)) + /* stable plumbing output; do not modify or localize */ fprintf(stderr, "Everything up-to-date\n"); return ret; |