diff options
author | Thomas Ackermann <th.acker@arcor.de> | 2013-08-27 19:56:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-27 15:14:43 -0700 |
commit | 3e65ac49e77283cf505b912c9a2b1bc05b7cd7a0 (patch) | |
tree | a5b0a175a9aac970823d02c02b93b9c99a239b3f /Documentation | |
parent | Use current "detached HEAD" message (diff) | |
download | tgif-3e65ac49e77283cf505b912c9a2b1bc05b7cd7a0.tar.xz |
Use current output for "git repack"
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/user-manual.txt | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index bdefd9a77a..c53cf814f0 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -3203,17 +3203,15 @@ To put the loose objects into a pack, just run git repack: ------------------------------------------------ $ git repack -Generating pack... -Done counting 6020 objects. -Deltifying 6020 objects. - 100% (6020/6020) done -Writing 6020 objects. - 100% (6020/6020) done -Total 6020, written 6020 (delta 4070), reused 0 (delta 0) -Pack pack-3e54ad29d5b2e05838c75df582c65257b8d08e1c created. +Counting objects: 6020, done. +Delta compression using up to 4 threads. +Compressing objects: 100% (6020/6020), done. +Writing objects: 100% (6020/6020), done. +Total 6020 (delta 4070), reused 0 (delta 0) ------------------------------------------------ -You can then run +This creates a single "pack file" in .git/objects/pack/ +containing all currently unpacked objects. You can then run ------------------------------------------------ $ git prune |