752
Commit
(sh.itjust.works)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Have you ever tried a rebase?
Not sure if serious or not, but yeah I use interactive rebases every day, many times a day (it's nice for keeping a clean, logical history of atomic changes).
It's very simple to recover if you accidentally do something you don't intend (
git rebase --abortif the rebase is still active,git reflogto find the commit before the rebase if it's finished).