I had the A
folder containing some files.
I decided to move the content of A
to B
, and then trash B
.
I thought that IntelliJ would be able to do that cleanly regarding Git with the functionality: refactor => Move.
My job working, I decided to commit the whole and synchronize to github with git push origin master
.
I just notice that my full history regarding the moved files has been dropped......
Is there any way to retrieve them? What should I have done to move cleanly?
I can see the full history of a specific file like this:
git log --follow ./path/to/file
but how to attach them naturally?
The point is that I expect to see them on github.