projects
/
forks
/
stagit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a89e756
)
fix link to commit from log page
author
Hiltjo Posthuma
<hiltjo@codemadness.org>
Mon, 4 Jan 2016 22:55:39 +0000
(23:55 +0100)
committer
Hiltjo Posthuma
<hiltjo@codemadness.org>
Mon, 4 Jan 2016 22:55:39 +0000
(23:55 +0100)
stagit.c
patch
|
blob
|
history
diff --git
a/stagit.c
b/stagit.c
index 27db7a65175005489ce8a815834af9a5f62c83ca..92107cf61dbb523a54ee0dbdf0960e66008b48e9 100644
(file)
--- a/
stagit.c
+++ b/
stagit.c
@@
-463,9
+463,8
@@
writelog(FILE *fp, const char *branch)
fputs("<table id=\"log\"><thead>\n<tr><td>Age</td><td>Commit message</td>"
"<td>Author</td><td>Files</td><td class=\"num\">+</td>"
"<td class=\"num\">-</td></tr>\n</thead><tbody>\n", fp);
+ relpath = "../";
while (!git_revwalk_next(&id, w)) {
- relpath = "";
-
if (!(ci = commitinfo_getbyoid(&id)))
break;
@@
-494,7
+493,6
@@
writelog(FILE *fp, const char *branch)
fprintf(fp, "-%zu", ci->delcount);
fputs("</td></tr>\n", fp);
- relpath = "../";
printshowfile(ci);
commitinfo_free(ci);