]> git.ipfire.org Git - thirdparty/git.git/commit - builtin-commit.c
Fix performance regression for partial commits
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 13 Jan 2008 08:30:56 +0000 (00:30 -0800)
committerJunio C Hamano <gitster@pobox.com>
Sun, 13 Jan 2008 08:30:56 +0000 (00:30 -0800)
commitfa9dcf80e1048ea996349891a885ac325019fcac
treef05ce66e4cb81298f83d7ade9c22530d34e98a43
parenta8db80c22494396a81d2b4b7f4082c369fc0f78d
Fix performance regression for partial commits

When running "git commit paths" to create a partial commit, we
used to carefully build the temporary index so that we do not
lose the cached stat information.  The rewrite of the command in
C lost it by carelessly using read_tree().

This resurrects the earlier behaviour to keep the cached stat
information as much as possible by using one-tree merge logic.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-commit.c