My local branch already pushed to origin and set upstream (or not, tried both cases) Next i run the next command in my project connected to gitlab:
git push (also added here "origin $branch" sometimes) -o merge_request.create \
-o merge_request.title=$title \
-o merge_request.description=$description \
-o merge_request.assign=$assignee \
-o merge_request.target=master
After executing i get "Everything up to date" message, that's meaning by default it's ok.
But at gitlab merge requests page there's no new of them. Have read in gitlab official issues that upstreaming branch would not take any effect in this case, but the story works only if branch is pushed to origin.
So tried to push it without upstream and still no effect. How may i do the trick, anyone know ?
I tried different variants of pushing MR request. I expect the command above taken from doc to work properly, if needed - edit it in some way.