Git大型檔案儲存庫

Home PDF Audio

Git 大型檔案儲存庫 (Git LFS) 用於管理 Git 中的大型檔案。

安裝

brew install git-lfs # macOS
sudo apt-get install git-lfs # Ubuntu/Debian
git lfs install

使用方法

git lfs track "*.psd"
git add .gitattributes
git add path/to/your/largefile.psd
git commit -m "Add large file with Git LFS"
git push origin main
git clone https://github.com/user/repo.git
git lfs pull

設定

確保遠端儲存庫支援 Git LFS。

git lfs ls-files

提示

git lfs migrate import --include="*.psd"

Back 2025.02.22 Donate