在 git 中添加替代项后如何回收磁盘空间?
我有一个 git 工作目录,并已添加到 .git/objects/info/alternates
中,以便该工作目录不需要存储已在我的计算机上的另一个工作目录中的重复数据。 (这就是 git clone --reference=DIRECTORY 的作用)。但是,已存储在工作目录中的重复对象不会从我的 .git/
目录中删除。这意味着 .git/
目录仍然很大。
如何删除重复的对象以使 .git/
目录更小?
I have a git working directory and have added to .git/objects/info/alternates
so that this working directory does not need to store duplicate data that's already in another working directory on my machine. (This is what git clone --reference=DIRECTORY
does). However, duplicate objects already stored in the working directory aren't deleted from my .git/
directory. This means the .git/
directory stays large.
How do I get rid of the duplicate objects so the .git/
directory is smaller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-l
选项特别会忽略从备用对象借用的对象。请参阅git help repack
和git help pack-objects
。The
-l
option in particular omits objects that are borrowed from an alternate. Seegit help repack
andgit help pack-objects
.