git: How to revert a file to a specific commit
- git: How to view all files of a commit
- git: How to see the changes of a file for a commit
- git: How to merge two commits into one
- git: How to push a new branch to a remote repository
- git: How to checkout a specific commit/version to a new branch
- git: Completely revert the last commit
- git: How to revert a file to a specific commit
git checkout COMMIT_HASH file/to/revert |
Will bring the file/to/revert
file to the state in COMMIT_HASH
commit.