小編最近工作上遇到了大 git repo 的問題,因為 repo 的 history 殘留了許多不必要的內容,像是 logback 的 log、可執行的 jar 檔、測試用的圖檔...等,所以現在的 repo 已經大到 630MB,小編就使用 bfg 將 repo 縮小到只剩 30 MB 左右。
會發現這件事是因為最近在 Jenkins 上面 build 的時候,clone 的時間都花超久,後來才發現原來 repo 太大了 Orz,大家記得不必要的檔案要刪除啊。
執行步驟如下:
1. 下載 bfg
2. 列出檔案最大的前 n 名:git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -50 | awk '{print$1}')"
3. 操作 bare repo:git clone --mirror git://example.com/some-big-repo.git,因為 bfg 會直接操作 bare repo
4. 刪除大檔:bfg --delete-files big-file-*.* some-big-repo.git
5. 壓縮 repo:git reflog expire --expire=now --all && git gc --prune=now --aggressive
6. 上傳回 remote repo:git push
7. 記得請其他開發者先備份 local repo,然後重新 clone 一次 repo。注意:千萬別直接 pull,然後又 push,因為這樣做的話就會把 local repo 的 history 又 push 一次了,這樣子前面的動作就完全沒有用。所以全部的開發者都要重新 clone
8. 快快樂樂使用 repo
BFG Repo-Cleaner:https://rtyley.github.io/bfg-repo-cleaner/
#git #bfg
「git prune」的推薦目錄:
- 關於git prune 在 Kewang 的資訊進化論 Facebook 的最讚貼文
- 關於git prune 在 用git prune 清理掉在github 已經deleted 的local branch 的評價
- 關於git prune 在 What is Git pruning? - Stack Overflow 的評價
- 關於git prune 在 Git Prune命令 - XSUN 的評價
- 關於git prune 在 git - prune local and remote branches - gists · GitHub 的評價
- 關於git prune 在 Use branch cleanup techniques - Manage Your Code Project ... 的評價
- 關於git prune 在 Clean up your local branches after merge and delete in GitHub 的評價
- 關於git prune 在 git fetch (--prune) (beginner - intermediate) anthony explains ... 的評價
- 關於git prune 在 GitHub Desktop branch pruning | GitHub Changelog 的評價
- 關於git prune 在 How to delete remote Git branches fully and completely from ... 的評價
git prune 在 Git Prune命令 - XSUN 的推薦與評價
git prune 简单地说就是一个清扫(housekeeping)的命令。 使用git查看分支,可以看到分支有三个重要分类:本地分支,本地-远程分支的参照,远程分支 ... ... <看更多>
git prune 在 用git prune 清理掉在github 已經deleted 的local branch 的推薦與評價
prune 是修剪的意思,–dry-run 表示模擬列出將要修剪的local stale branch ,但不真的執行。 如果寫:. 1. $ git remote prune origin. 那 ... ... <看更多>