Reputation: 13
My merge request shows changes from another merge request and on gitlab I see target branch (master) is n commits behind. I tried git rebase master and also git pull --rebase. Still no change in above mentioned problem. Can someone please help?
Upvotes: 1
Views: 1864
Reputation: 11958
Based on your comment I would recommend following this specific workflow
git pull
git rebase origin/master -i
git push origin [your branch name] --force
This should solve your issue.
Upvotes: 1