In the moment, each time I want to make a merge-request, I commit my changes and push it online with
git commit -am 'My changes'
git push origin my_branch:my_branch
and then on Gitlab, manually, I make a merge-request and assign the CTO.
How directly from bash could I create a merge-request an assigning the CTO?
I know there exists the following answer Is it possible to create merge requests in pure Git from the command line?, but that didn't answer my question.
How can I create a merge-request from my_branch
to master?
Could I do git --assign=CTO request-pull my_branch master
?