rever branch to previous branch code example
Example 1: git go back to previous commit
git checkout 12feg3435 #commit ID
Example 2: how to revert branch to old commit
git revert --no-commit 0766c053..HEAD
git commit
git checkout 12feg3435 #commit ID
git revert --no-commit 0766c053..HEAD
git commit