From 8c599c749f2f5aaf477db1327b97461f9fa3f62a Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Wed, 10 Jan 2007 06:36:29 -0500 Subject: [PATCH] Don't save the commit buffer in git-describe. The commit buffer (message of the commit) is not actually used by the git-describe process. We can save some memory by not keeping it around. Signed-off-by: Shawn O. Pearce Signed-off-by: Junio C Hamano --- describe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/describe.c b/describe.c index f4029ee74..3c2df037e 100644 --- a/describe.c +++ b/describe.c @@ -162,6 +162,7 @@ int main(int argc, char **argv) } setup_git_directory(); + save_commit_buffer = 0; if (argc <= i) describe("HEAD", 1); -- 2.30.2