Packfile - CI/CD用語集の定義
packfile(.git/objects/pack/配下の.pack)は、多数のGitオブジェクトをdelta encodingでまとめて圧縮して保存し、loose objectファイルを置き換えて容量を節約し転送を高速化します。Gitはgcとpushの際にこれらを作成します。
packfile(.git/objects/pack/配下の.pack)は、多数のGitオブジェクトをdelta encodingでまとめて圧縮して保存し、loose objectファイルを置き換えて容量を節約し転送を高速化します。Gitはgcとpushの際にこれらを作成します。
packfile(.git/objects/pack/配下の.pack)は、多数のGitオブジェクトをdelta encodingでまとめて圧縮して保存し、loose objectファイルを置き換えて容量を節約し転送を高速化します。Gitはgcとpushの際にこれらを作成します。
関連ガイド
Git LFS - CI/CD Glossary DefinitionGit LFS: Git LFS (Large File Storage) replaces large binaries in the repository with small text pointers and…
Shallow Clone - CI/CD Glossary DefinitionShallow Clone: A shallow clone (`git clone --depth 1`) fetches only recent history up to a set depth instead…
Reflog - CI/CD Glossary DefinitionReflog: The reflog records every update to `HEAD` and branch tips locally, so `git reflog` can recover commit…