I was working locally on a branch that seems not to be tracked (it said:"No-Branch"). I made a ton of commits, everything was going great. but then I checked out master to merge my branch. And the branch dissapeared.
Is there any way to retrieve it ?
@FIX (Knittl):
"git reflog" showed me something like
- f85d248 HEAD@{0}: commit: Modal loader fixes
- e17e71b HEAD@{1}: commit: Module updates
- 3fcb3d6 HEAD@{2}: commit: Updated rules
- dc99963 HEAD@{3}: checkout: moving from 582315b9104af7e8525857b74e5b74aed7c86c54 to master
So I did "git checkout 582315b9104af7e8525857b74e5b74aed7c86c54"which put me back on the detached head.
Create a branch and merged with master
Thanks a million @knittl for saving my ass with providing the right help.