From: "Nguyễn Thái Ngọc Duy" <pclouds@gmail.com>
To: git@vger.kernel.org
Cc: "Junio C Hamano" <gitster@pobox.com>,
"Sverre Rabbelier" <srabbelier@gmail.com>,
"Jeff King" <peff@peff.net>, "Nicolas Pitre" <nico@fluxnic.net>,
"Fernando Vezzosi" <buccia@repnz.net>,
"Nguyễn Thái Ngọc Duy" <pclouds@gmail.com>
Subject: [PATCH v2 2/5] index-pack: perform automatic gc, share receive.gc config with receive-pack
Date: Wed, 16 May 2012 19:29:34 +0700 [thread overview]
Message-ID: <1337171377-26960-3-git-send-email-pclouds@gmail.com> (raw)
In-Reply-To: <1337171377-26960-1-git-send-email-pclouds@gmail.com>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
Documentation/config.txt | 7 ++++---
builtin/index-pack.c | 6 ++++--
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 915cb5a..3b6d773 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -1754,9 +1754,10 @@ rebase.autosquash::
If set to true enable '--autosquash' option by default.
receive.autogc::
- By default, git-receive-pack will run "git-gc --auto" after
- receiving data from git-push and updating refs. You can stop
- it by setting this variable to false.
+ By default, git-receive-pack and git-index-pack will run
+ "git-gc --auto" after receiving data from git-push and
+ updating refs. You can stop it by setting this variable to
+ false.
receive.fsckObjects::
If it is set to true, git-receive-pack will check all received
diff --git a/builtin/index-pack.c b/builtin/index-pack.c
index dc2cfe6..4e888ea 100644
--- a/builtin/index-pack.c
+++ b/builtin/index-pack.c
@@ -10,6 +10,7 @@
#include "fsck.h"
#include "exec_cmd.h"
#include "thread-utils.h"
+#include "gc.h"
static const char index_pack_usage[] =
"git index-pack [-v] [-o <index-file>] [--keep | --keep=<msg>] [--verify] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])";
@@ -1463,12 +1464,13 @@ int cmd_index_pack(int argc, const char **argv, const char *prefix)
curr_index = write_idx_file(index_name, idx_objects, nr_objects, &opts, pack_sha1);
free(idx_objects);
- if (!verify)
+ if (!verify) {
final(pack_name, curr_pack,
index_name, curr_index,
keep_name, keep_msg,
pack_sha1);
- else
+ gc("receive.autogc", 0);
+ } else
close(input_fd);
free(objects);
free(index_name_buf);
--
1.7.8.36.g69ee2
next prev parent reply other threads:[~2012-05-16 12:33 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-12 8:08 [PATCH] Update "gc" behavior in commit, merge, am, rebase and index-pack Nguyễn Thái Ngọc Duy
2012-05-12 8:18 ` Nguyen Thai Ngoc Duy
2012-05-12 17:36 ` Nicolas Pitre
2012-05-14 9:09 ` Nguyen Thai Ngoc Duy
2012-05-14 15:18 ` Sverre Rabbelier
2012-05-15 11:25 ` Nguyen Thai Ngoc Duy
2012-05-14 20:11 ` Jeff King
2012-05-14 20:50 ` Jeff King
2012-05-14 23:35 ` Junio C Hamano
2012-05-16 12:29 ` [PATCH v2 0/5] "git gc --auto" update Nguyễn Thái Ngọc Duy
2012-05-16 12:29 ` [PATCH v2 1/5] Add convenient function to do automatic garbage collection Nguyễn Thái Ngọc Duy
2012-05-18 22:37 ` Junio C Hamano
2012-05-19 4:56 ` Nguyen Thai Ngoc Duy
2012-05-16 12:29 ` Nguyễn Thái Ngọc Duy [this message]
2012-05-16 12:29 ` [PATCH v2 3/5] commit: reinstate "gc --auto" Nguyễn Thái Ngọc Duy
2012-05-16 12:29 ` [PATCH v2 4/5] gc: add --dry-run Nguyễn Thái Ngọc Duy
2012-05-16 12:29 ` [PATCH v2 5/5] Update "gc" behavior in commit, merge, am and rebase Nguyễn Thái Ngọc Duy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1337171377-26960-3-git-send-email-pclouds@gmail.com \
--to=pclouds@gmail.com \
--cc=buccia@repnz.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=nico@fluxnic.net \
--cc=peff@peff.net \
--cc=srabbelier@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.