Reply to same thread on mailing list with git send-email
I submitted the patch to the organizations mailing list and now you need to submit the patched version of the patch on the same thread using git send-email. I have set my chainreplyto to false. I've tried this before:
git send-email --no-chain-reply-to --to=mailing-list@organisation.org \ --in-reply-to='[org-devel] [PATCH] Added functionality' Added-functionality.patch
This creates a new thread instead of responding to the existing one. What is the correct answer?
+3
eejs
source
to share
1 answer
Use Message-id
instead of object in option --in-reply-to
.
--in-reply-to=<Message-id>
You can find the value Message-id
in the header of the message you want to reply to.
+5
Saurabh Sengar
source
to share