To reset your repository to the state it was in at the highlighted commit (fixed weather faiss), follow these steps:
Since your UI (GitHub Desktop or another Git GUI) doesn’t show full commit hashes, you’ll need to open a terminal and navigate to your repository:
Find the commit hash of fixed weather faiss (e.g., abc1234).
Run the following command to hard reset your repository to that commit:
Replace abc1234 with the actual commit hash.
If you’ve already pushed the newer commits to a remote repository (like GitHub), you’ll need to force push to rewrite the history:
⚠ Warning: This will permanently remove the commits from the remote repository as well, which could affect other collaborators.
If you just want to undo the commits but keep the changes in your working directory (unstaged):
Let me know if you need help! 🚀