1
votes

I did some changes in dev branch , committed and pushed (git push origin dev)and created a new merge request from gitlab frontend . But now i want to modify 1 file in same merge request without raising new one . Can I delete dev branch on remote and change that file on local, commit and push again as git push origin dev . Will this harm my current merge request ?

1

1 Answers

3
votes

If that modification should be part of your MR (Merge Request), you can simply commit on your MR branch (dev), and push: that will update your MR.

If it is not part of your MR, you should create a new branch from dev, commit there and push that new branch.