1
0
mirror of https://github.com/git/git.git synced 2024-09-28 15:01:31 +02:00
git/git-gc.sh
Junio C Hamano a3c11db9ec Use 'repack -a -d -l' instead of 'repack -a -d' in git-gc
Otherwise we would end up slurping objects we borrow from
alternates.

Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-12-27 14:23:21 -08:00

16 lines
265 B
Bash
Executable File

#!/bin/sh
#
# Copyright (c) 2006, Shawn O. Pearce
#
# Cleanup unreachable files and optimize the repository.
USAGE=''
SUBDIRECTORY_OK=Yes
. git-sh-setup
git-pack-refs --prune &&
git-reflog expire --all &&
git-repack -a -d -l &&
git-prune &&
git-rerere gc || exit