On 2023-11-12, I cleaned up some incorrect contact information (user.name and user.email) in the commit history via git-filter-repo.
- Fetch the updated history and tags with
git fetch --force --all --tags
- For each local branch, rebase onto the updated remote branch with
git checkout <branch-name>; git rebase origin/<branch-name>
(Replacebranch-name
with the name of each branch you have checked out.)
- No action is needed. You can clone the repository as usual.
Note: These steps are necessary to align your local repository with the rewritten history. Failing to do so might result in conflicts and inconsistencies. If you encounter any issues, please feel free to raise an issue.