The commit that removes the `pom.xml` is the last one, so the easiest path to redo it is to reset to the previous one, and discard the `pom.xml` change made in that commit. The following should work:
```bash git reset HEAD~1 # Go back to the previous commit but keeping the changes git checkout -- google-compute-engine/pom.xml # Discard the changes in this file # Commit the remaining files again git add . git commit -m "trying to minimize formatting differences even more..." ``` Note that you will need to push-force to your fork because of the commit reset. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/135#issuecomment-112794403
