branch to previous commit code example
Example 1: how to revert a commit
git reset --soft HEAD@{1}
git reset --hard HEAD@{1}
git push --force origin master
Example 2: git go to previous branch
git checkout -
Example 3: git go back to previous commit
git checkout 12feg3435
Example 4: git command change to previous comit
git revert --no-commit 0766c053..HEAD
git commit
If you really do want to have individual commits
(instead of reverting everything with one big commit),
then you can pass --no-edit instead of --no-commit,
so that you don't have to edit a commit
message for each reversion. – user456814
Example 5: git command change to previous comit
git revert a867b4af 25eee4ca 0766c053
git revert HEAD~2..HEAD
git revert 0d1d7fc..a867b4a
git revert -m 1 <merge_commit_sha>
git checkout 0d1d7fc32 .
git commit