使用 Git Prune 命令清理 Git 仓库

John Wachira 2023年1月30日
  1. 使用 git prune 命令
  2. git prunegit fetch --prunegit remote prune 之间的区别
使用 Git Prune 命令清理 Git 仓库

在本文中,我们将讨论 git prune 命令及其用途。我们知道 Git 对我们的数据非常谨慎。

当我们删除提交之类的数据时,Git 不会轻易丢失它们。这会导致我们机器中的陈旧数据堆积。

这就是 git prune 命令发挥作用的地方。

我们可以将 git prune 命令称为 Git 中的一个内务实用程序,用于清理孤立或无法访问的 Git 对象。当我们谈论不可访问的对象时,它们是我们仓库中当前 refs 无法访问的对象。

一个很好的例子是当我们使用 git reset <Commit ID> 命令回滚到之前的提交时。Git 会将删除的提交存储为悬空对象。

我们使用 git prune 命令来消除此类数据。

使用 git prune 命令

git prune 命令有几个有用的选项,如下所示。

$ git prune --dry-run

我们运行上面的命令来获取命令的输出。它不执行 prune

$ git prune --verbose

上面的命令将向我们展示所有动作和相关对象。

$ git prune --progress

我们使用上面的命令来检查 git prune 的进度。

$ git prune --expire <time>

我们使用上面的命令来删除早于指定时间 (<time>) 的对象。

为了更好地理解这个概念,让我们看一个实际的例子。让我们运行 git log 命令来检查本地仓库中的提交历史记录。

$ git log --oneline

提交历史

让我们使用 git reset 命令回滚一次提交,这样我们的 HEAD 处于 第六次更新

$ git reset --hard 27bd68b
HEAD is now at 27bd68b Sixth Update

让我们尝试找到已删除的提交。

$ git fsck --lost-found

悬空

删除的提交是第一个;我们可以用前七个字符来确认。

在运行 git prune 命令之前,我们必须运行一个 reflog,它将使早于 now 的条目过期。

$ git reflog expire --expire=now --expire-unreachable=now --all

最好是 dry run 这个命令,看看会发生什么变化。

$ git prune --dry-run

git &ndash;dry-run

我们现在可以运行 prune 命令。

$ git prune --verbose --progress --expire=now

让我们检查悬空提交是否仍然存在于我们的仓库中。

$ git fsck --lost-found

最后

git prunegit fetch --prunegit remote prune 之间的区别

git fetch --prunegit remote prune 命令具有相似的功能。我们使用它们来删除远程仓库中删除的分支的引用。

当作为一个团队工作时,它会派上用场,并且你希望摆脱在合并到主分支后被删除的远程分支。

git fetch --prune 命令是以下各项的组合:

$ git fetch --all && git remote prune

它会在开始 prune 之前从我们的远程仓库中获取。如前所述,基本的 git prune 命令将删除本地对象。

作者: John Wachira
John Wachira avatar John Wachira avatar

John is a Git and PowerShell geek. He uses his expertise in the version control system to help businesses manage their source code. According to him, Shell scripting is the number one choice for automating the management of systems.

LinkedIn

相关文章 - Git Prune