URI: 
       walk revision by time and only "flat" - stagit-gopher - A git gopher frontend. (mirror)
  HTML git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
   DIR commit e489408b99fdf3d1aa4a80b860cecdf09c67306a
   DIR parent b634cfd86042f303dae68c2805810c7a0f9614c5
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Wed,  9 Dec 2015 22:55:34 +0100
       
       walk revision by time and only "flat"
       
       Diffstat:
         M urmoms.c                            |       4 ++++
       
       1 file changed, 4 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/urmoms.c b/urmoms.c
       @@ -368,6 +368,8 @@ writelog(FILE *fp)
        
                git_revwalk_new(&w, repo);
                git_revwalk_push_head(w);
       +        git_revwalk_sorting(w, GIT_SORT_TIME);
       +        git_revwalk_simplify_first_parent(w);
        
                /* TODO: also make "expanded" log ? (with message body) */
                fputs("<table><thead>\n<tr><td>Age</td><td>Commit message</td><td>Author</td>"
       @@ -490,6 +492,8 @@ writeatom(FILE *fp)
        
                git_revwalk_new(&w, repo);
                git_revwalk_push_head(w);
       +        git_revwalk_sorting(w, GIT_SORT_TIME);
       +        git_revwalk_simplify_first_parent(w);
        
                for (i = 0; i < m && !git_revwalk_next(&id, w); i++) {
                        if (!(ci = commitinfo_getbyoid(&id)))