dsp-site/wiki/Prog/Git/Git распаковка объекта.md
2019-04-19 21:34:58 +03:00

17 lines
557 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Git: распаковка объекта
---
title: "Git: распаковка объекта"
category: Программирование
tags: программирование, git
summary:
CSS: table-100.css
...
В случае повреждения репозитория можно восстановить отдельные
объекты, которые сохраняются в формате zlib. Пример команды:
```
perl -MCompress::Zlib -e 'undef $/; print uncompress(<>)' < 1234567890abcdef1234567890abcdef012345 > file
```