Browse Source

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 <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Shawn O. Pearce 18 years ago committed by Junio C Hamano
parent
commit
8c599c749f
  1. 1
      describe.c

1
describe.c

@ -162,6 +162,7 @@ int main(int argc, char **argv) @@ -162,6 +162,7 @@ int main(int argc, char **argv)
}

setup_git_directory();
save_commit_buffer = 0;

if (argc <= i)
describe("HEAD", 1);

Loading…
Cancel
Save