小編最近工作上遇到了大 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 clone bare」的推薦目錄:
- 關於git clone bare 在 Kewang 的資訊進化論 Facebook 的精選貼文
- 關於git clone bare 在 What's the difference between git clone --mirror and git clone 的評價
- 關於git clone bare 在 git clone bare example - YouTube 的評價
- 關於git clone bare 在 How to create a bare git repo with init and update example 的評價
- 關於git clone bare 在 Non-bare and bare repositories - CodeRefinery 的評價
- 關於git clone bare 在 Duplicating a repository - GitHub Docs 的評價
- 關於git clone bare 在 Get up to speed with partial clone and shallow clone 的評價
- 關於git clone bare 在 Goston's Blog - 自己用git clone --bare 和git push --mirror 把... 的評價
- 關於git clone bare 在 Goston's Blog - 自己用git clone --bare 和git push --mirror 把... 的評價
- 關於git clone bare 在 Clone a Github Repository (Git Clone Windows) - JC Chouinard 的評價
- 關於git clone bare 在 understanding this "git bare repo" approach to dotfiles 的評價
git clone bare 在 git clone bare example - YouTube 的推薦與評價
Would you like to set up an existing Git repo as a backup or a new replica node on your network. The git clone bare command will allow you ... ... <看更多>
git clone bare 在 How to create a bare git repo with init and update example 的推薦與評價
There are two ways to create a bare git repo. The first is with git init bare and the second is with git clone bare. In this git bare ... ... <看更多>
git clone bare 在 What's the difference between git clone --mirror and git clone 的推薦與評價
... <看更多>