git revert to a particular commit code example
Example 1: git roll back to specific commit
cd projectname
git log --oneline
git checkout abc1234 .
git add -A
git commit -m "Revert commit: abc1234"
git push
Example 2: git revert all commits to pervious commit
git revert --no-commit <commithash>..HEAD #revert changes in range of commits from head to back to that commit hash
Example 3: how to revert to a specific commit
git revert <commit-hash>
Example 4: git command change to previous comit
git reflog
git checkout HEAD@{...}