Git never forgets, well kinda. `git-reflog`

1 · Abin Simon · Aug. 10, 2019, midnight
Hi, I am gonna let you in on a little secret. Git never forgets what you do, you can mess up however you want and you will still have all your data available*. * as long as you have committed you code and also only for 90 days OK, I am not taking about the fact that you can you can see the logs of what changes you have made over a period of time. I am talking about that fact that you can even recover from something like git reset --hard HEAD~30. Working with git is a little scary for a lot of ...