I'm trying to set a GitLab merge request from the command line, using the -o merge_request.description="my merge request"
option.
However, I wish to supply an entire Markdown file, and if I do this the command complains that newlines are not allowed. I have also tried using sed to replace all newlines with '\n', but these are then taken literally and my merge request is one line containing lots of '\n's.
Is there a way around this?