A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
I think there are two ways:
- Use the "GitLab Extension for Visual Studio"
This should be the simplest way.
- Via git
As far as I know GitLab supports creating an MR automatically via a specific command line flag. You can set this up as an alias so that every time you push from Visual Studio, an MR is drafted.
So you would basically do something like:
git config --global alias.push-mr "push -o merge_request.create"
And then you would use the terminal to:
git push-mr