I added file and push it. I realize later that the file2 should not be added. How could I do please?
Code
git add f1.txt
git add f2.txt
git commit -m 'add f1'
git push origin feature_1
I did
git reset --soft HEAD~1
git reset HEAD path/to/f2
git commit -m 'add f1'
and im still having the file in my Merge Request on GIT.