git.pm: Renames from git-diff-tree aren't handled, so don't ask for them.

Patch by Jamey Sharp <jamey@minilop.net>.
master
joshtriplett 2007-08-30 02:32:32 +00:00
parent 7144514b93
commit c5ee59ec5e
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ sub git_commit_info ($;$) { #{{{
$num ||= 1;
my @raw_lines =
run_or_die('git-log', "--max-count=$num", '--pretty=raw', '--raw', '--abbrev=40', '--always', '-M', '-m', '-r', $sha1);
run_or_die('git-log', "--max-count=$num", '--pretty=raw', '--raw', '--abbrev=40', '--always', '-m', '-r', $sha1);
my @ci;
while (my $parsed = _parse_diff_tree(\@raw_lines)) {