you have 2 commits that pushed to dev directly, instead you want to reset them and make a PR so the commits get a review.
move commits from the one branch1 to the other branch2, commits must be deleted from the branch1 and added to the branch2.
gitcheckoutdev# branch to move from
gitcheckout-bfeature/new-feature# branch to move to
gitcheckoutdev# back to original branch
gitreset--hardHEAD~2# reset 2 commits back to the state of the branch
gitpushorigindev# push the changes to the remote
now the branch feature/new-feature has 2 commits ahead of dev.