I did:
git clone <some repo>
git checkout development
git checkout -b my-feature
updated somefolder/somefile.sh
and other files and did multiple commits, pushed the changes and did rebase:
git commit -a -m "somefile update"
git push origin my-feature
git rebase origin/development -i
and created a merge request in GitLab, but some reviewer requested to rollback all changes I made in somefoler/somefile.sh
(in my-feature
branch)
What is the right command for that?