Для этого сайта требуется поддержка JavaScript.
Обзор
Помощь
Регистрация
Вход
github
/
git-sizer
зеркало из
Следить
1
В избранное
0
Форкнуть
Вы уже форкнули git-sizer
0
Код
Задачи
Пакеты
Проекты
Релизы
Вики
Активность
master
git-sizer
/
Brewfile
2 строки
10 B
Plaintext
Исходник
Постоянная ссылка
Обычный вид
История
Убрать экранирование
Экранировать
Implement the main command, `git-sizer` It can compute various dimensions about a tree object in a Git repository, in a way that is robust against git bombs. For now it must be passed the path to a Git repository and one or more tree object specifications (like `HEAD^{tree}` or `HEAD:src`). That is likely to change. To avoid starting up lots of processes, we use `git cat-file --batch` to read trees. But for blobs we only need to know the size, so use `git cat-file --batch-check` for blobs. This unfortunately means that we need to keep two `git` processes running, which means paying the git startup time twice.
2017-10-14 11:00:38 +03:00
brew "go"