how to get back to latest commit in git code example
Example: after checking out a previous commit go back to latest commit
git checkout <commit hash> # go to previous commit
git revert <commit hash> # revert action of going to previous commit
git checkout <commit hash> # go to previous commit
git revert <commit hash> # revert action of going to previous commit