im stuck at an assignment where im required to do a 'without fast forward' merge with my branch back to my master. Reason being, i accidentally did a normal merge and pushed to my remote repo. How do i reverse this and do it correctly? i tried
git reset --hard <commit>
to go back to previous commit followed by
git merge --no-ff <branch name>,
but it says 'Already up to date' does it mean now i have done it correctly? Please advice... thank you!