Git tips and tricks

Revert last commit in GIT Revert last commit in GIt also knows as delete the last commit that was made intentionally or accidenlty. You can revert commit using following action. git reset --soft HEAD~1 git reset --hard HEAD~1 –soft will not remove your...
Read More ⟶