我可以缩短 git 存储库的历史记录吗

Can I shorten the history of a git repository

起初,我做了一个浅克隆。在此之后,我发现一些旧的提交引入了一些大文件。例如,这些旧的提交一次又一次地替换了一个二进制文件。

现在,我不希望我的本地存储库包含这些重大更改。如何在不使用 git clone --depth=10 重新创建新存储库的情况下缩短历史记录?

# shallow clone
git clone --depth 100 ssh://git@10.7.222.111:/home/my_repository01.git
git log --oneline | wc -l  # the result is 100

# Now, how can I shorten the current history to 10? 
# Otherwise, I need to execute `git clone --depth=10` to recreate the repository.

您可以使用git fetch --depth=10更新当前的浅水深度。