]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/examples/git-gc.sh
Make gc a builtin.
[thirdparty/git.git] / contrib / examples / git-gc.sh
CommitLineData
30f610b7
SP
1#!/bin/sh
2#
3# Copyright (c) 2006, Shawn O. Pearce
4#
5# Cleanup unreachable files and optimize the repository.
6
81035bba 7USAGE='[--prune]'
30f610b7
SP
8SUBDIRECTORY_OK=Yes
9. git-sh-setup
10
e3ff4b24
JH
11no_prune=:
12while case $# in 0) break ;; esac
13do
14 case "$1" in
15 --prune)
16 no_prune=
17 ;;
18 --)
19 usage
20 ;;
21 esac
22 shift
23done
24
c2120e5e
JS
25case "$(git config --get gc.packrefs)" in
26notbare|"")
27 test $(is_bare_repository) = true || pack_refs=true;;
28*)
29 pack_refs=$(git config --bool --get gc.packrefs)
30esac
31
32test "true" != "$pack_refs" ||
30f610b7
SP
33git-pack-refs --prune &&
34git-reflog expire --all &&
a3c11db9 35git-repack -a -d -l &&
e3ff4b24 36$no_prune git-prune &&
30f610b7 37git-rerere gc || exit