I needed to fix a change from a previous release. So I commited my current changes using git -a -m "latest"
and then followed this QA here: How to revert Git repository to a previous commit? to jump back about a month. This worked very well. I made the changes needed. I then performed a
git checkout master
To get back to the present. Unfortunatley I then discovered that when I performed my commit - I'd forgotten to perform a
git add .
As such although any changes I've made were there...any new files did not get committed.
Are these permanently lost or is there a way back?