* [PATCH] gitweb: add --full-history to history generation optimization
@ 2006-07-02 4:42 Luben Tuikov
2006-07-02 5:22 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Luben Tuikov @ 2006-07-02 4:42 UTC (permalink / raw)
To: git
Now that Linus fixed full history generation, we can
add this to the optimized history generation.
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
---
gitweb/gitweb.cgi | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi
index d808900..934af4a 100755
--- a/gitweb/gitweb.cgi
+++ b/gitweb/gitweb.cgi
@@ -2296,7 +2296,7 @@ sub git_history {
"</div>\n";
print "<div class=\"page_path\"><b>/" . esc_html($file_name) . "</b><br/></div>\n";
- open my $fd, "-|", "$gitbin/git-rev-list $hash -- \'$file_name\'";
+ open my $fd, "-|", "$gitbin/git-rev-list --full-history $hash -- \'$file_name\'";
print "<table cellspacing=\"0\">\n";
my $alternate = 0;
while (my $line = <$fd>) {
--
1.4.1.rc2.gffcf
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-07-03 1:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-02 4:42 [PATCH] gitweb: add --full-history to history generation optimization Luben Tuikov
2006-07-02 5:22 ` Junio C Hamano
2006-07-03 1:38 ` Luben Tuikov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox