@kadin
To get the previous state of the repository in Git, you can use the "git checkout" command with the commit hash of the previous state.
Here's how you can do it:
1
|
git checkout <commit-hash> |
Replace '' with the actual commit hash that you copied in step 2.
After running this command, your working directory will be updated to the state of the repository at the commit specified by the commit hash. You can now work with the code at that previous state.