git command change to previous comit code example
Example 1: git amend
git commit --amend
Example 2: 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 3: git command change to previous comit
git reflog
git checkout HEAD@{...}
Example 4: git command change to previous comit
git checkout <commit-id>
git checkout -b <branch name>
Example 5: git command change to previous comit
git checkout <commit_id>
git checkout -b <new branch> <commit_id>
git checkout HEAD~X // x is the number of commits t go back
Example 6: 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