diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-05 14:59:59 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-06 00:08:56 -0700 |
commit | d4bb43ee273528064192848165f93f8fc3512be1 (patch) | |
tree | daf1efa52ecfd30026e641ce11c2e7c65c32f3e0 /git-commit.sh | |
parent | 2c3c4399477533329579ca6b84824ef0b125914f (diff) | |
download | git-d4bb43ee273528064192848165f93f8fc3512be1.tar.gz |
Invoke "git gc --auto" from commit, merge, am and rebase.
The point of auto gc is to pack new objects created in loose
format, so a good rule of thumb is where we do update-ref after
creating a new commit.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-x | git-commit.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-commit.sh b/git-commit.sh index 1d04f1ff31..d22d35eadc 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -652,6 +652,7 @@ git rerere if test "$ret" = 0 then + git gc --auto if test -x "$GIT_DIR"/hooks/post-commit then "$GIT_DIR"/hooks/post-commit |