Git-Fu Advice
Now who would have thought, I start blogging about git and people have advice. This post isn’t just my personal learning but also some advice I received from others! git reset HEAD^ From Alexis: Something I’m doing a lot is when I mess up with git, I sometimes need to uncommit something but keep the changes I had just before the commit. git add -i From Alexis: “Use this…” Brief but powerful advice. I never thought of using the interactive mode personally but if you are doing a complex commit or want to double over your work git’s interactive mode is fairly robust. ...