зеркало из https://github.com/microsoft/git.git
cvsserver: use git-rev-list instead of git-log
On 5/4/06, Linus Torvalds <torvalds@osdl.org> wrote: > No it wasn't. "git log --parents" was definitely supposed to still work. > > That said, I suspect a git-cvsserver kind of usage is better off using > "git-rev-list --parents HEAD" instead, which didn't break in the first > place.
This commit is contained in:
Родитель
24e12579fc
Коммит
a248c9614f
|
@ -2076,14 +2076,15 @@ sub update
|
|||
# TODO: log processing is memory bound
|
||||
# if we can parse into a 2nd file that is in reverse order
|
||||
# we can probably do something really efficient
|
||||
my @git_log_params = ('--parents', '--topo-order');
|
||||
my @git_log_params = ('--pretty', '--parents', '--topo-order');
|
||||
|
||||
if (defined $lastcommit) {
|
||||
push @git_log_params, "$lastcommit..$self->{module}";
|
||||
} else {
|
||||
push @git_log_params, $self->{module};
|
||||
}
|
||||
open(GITLOG, '-|', 'git-log', @git_log_params) or die "Cannot call git-log: $!";
|
||||
# git-rev-list is the backend / plumbing version of git-log
|
||||
open(GITLOG, '-|', 'git-rev-list', @git_log_params) or die "Cannot call git-rev-list: $!";
|
||||
|
||||
my @commits;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче