How to gow back to the last commit in the history after I used git reset to go to an older changeset
- by e-satis
Suppose my history goes that way :
A - B - C - D (master)
If I do git reset B, I'll got :
A - B (master)
Trouble is, git log now show me only the history from A to B, and I can't see C and D anymore.
How can I go back to D ?