stagit

Personal fork of stagit

git clone git://mccd.space/stagit
commit 46feee82b6b31b87c8d8f88fa8e467b2129200d6
parent d616fdc7aaabc1821a6a3f114011d24acae44775
Author: Marc <marc@coquand.email>
Date:   Sat, 18 Jul 2026 17:24:48 +0200

Remove the Last commit from Repository index list

Diffstat:
Mstagit-index.c | 4----
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/stagit-index.c b/stagit-index.c
@@ -109,7 +109,6 @@ writeheader(FILE *fp)
 	fputs("<main id=\"git-content\"><h1 class=\"title\">Repositories</h1>\n"
 		"<table id=\"index\"><thead>\n"
 		"<tr><td><b>Name</b></td><td><b>Description</b></td>"
-		"<td><b>Last commit</b></td></tr>"
 		"</thead><tbody>\n", fp);
 }
 
@@ -155,9 +154,6 @@ writelog(FILE *fp)
 	xmlencode(fp, stripped_name, strlen(stripped_name));
 	fputs("</a></td><td>", fp);
 	xmlencode(fp, description, strlen(description));
-	fputs("</td><td>", fp);
-	if (author)
-		printtimeshort(fp, &(author->when));
 	fputs("</td></tr>", fp);
 
 	git_commit_free(commit);