I ran the following command and it was a disaster.
$ git clean -xfd
=>
Removing config/application.yml
Removing config/honeybadger.yml
Removing log/development.log
Removing log/production.log
Removing notes.rb
Removing public/assets/global/plugins/angularjs/plugins/angular-file-upload/uploads/
Removing public/assets/global/plugins/icheck/demo/css/custom.styl
Removing public/assets/global/plugins/icheck/demo/js/custom.js
Removing test/controllers/calculators/
Removing tmp/
It promptly removed all the files that were not tracked by git (desired). But it also removed all files that were important, but ignored in my .gitignore. How would I get those files back?