I seem to have ended up in some sort of git grey area that I don't know how to solve.
Situation: I worked on 2 independent features from the development branch yesterday, however, I forgot to switch to the development branch before checking out the 2nd branch. Hence the changes from the 1st feature were committed to the 2nd feature. I solved this by doing a git revert.
Yesterday I pushed the first feature to development, and today before pushing the 2nd feature to development I did "git pull origin develop" in order to pull the latest changes from development. But the files that were affected by the revert, don't update to the latest changes from development. I believe due to the revert?
How does one solve this?