I\'ve committed a bunch of changes to a repository, and they were reverted by someone else (they compile on windows but not on linux). I think that the changes are still in the
You can try reverting the reverts, using git revert
. You can also restore the files from your commit using git checkout
. Or you can use git cherry-pick -n
to re-apply them and change them. You can create a new branch from your commit where you apply the changes using git branch
. The possibilities are (almost) endless. :)