ichange order of commits in log from most recent to old to applied order - stagit-gopher - A git gopher frontend. (mirror) Err bitreich.org 70 hgit clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/ URL:git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/ bitreich.org 70 1Log /scm/stagit-gopher/log.gph bitreich.org 70 1Files /scm/stagit-gopher/files.gph bitreich.org 70 1Refs /scm/stagit-gopher/refs.gph bitreich.org 70 1Tags /scm/stagit-gopher/tag bitreich.org 70 1README /scm/stagit-gopher/file/README.gph bitreich.org 70 1LICENSE /scm/stagit-gopher/file/LICENSE.gph bitreich.org 70 i--- Err bitreich.org 70 1commit 4011430d5117b1a33e7a3855d8d83c2862d5552d /scm/stagit-gopher/commit/4011430d5117b1a33e7a3855d8d83c2862d5552d.gph bitreich.org 70 1parent 1db52961131a913a60e96889ae210daede9b44e6 /scm/stagit-gopher/commit/1db52961131a913a60e96889ae210daede9b44e6.gph bitreich.org 70 hAuthor: Hiltjo Posthuma URL:mailto:hiltjo@codemadness.org bitreich.org 70 iDate: Thu, 7 Feb 2019 21:02:37 +0100 Err bitreich.org 70 i Err bitreich.org 70 ichange order of commits in log from most recent to old to applied order Err bitreich.org 70 i Err bitreich.org 70 iDiffstat: Err bitreich.org 70 i M LICENSE | 2 +- Err bitreich.org 70 i M stagit-gopher-index.c | 1 - Err bitreich.org 70 i M stagit-gopher.1 | 6 +++--- Err bitreich.org 70 i M stagit-gopher.c | 2 -- Err bitreich.org 70 i Err bitreich.org 70 i4 files changed, 4 insertions(+), 7 deletions(-) Err bitreich.org 70 i--- Err bitreich.org 70 1diff --git a/LICENSE b/LICENSE /scm/stagit-gopher/file/LICENSE.gph bitreich.org 70 i@@ -1,6 +1,6 @@ Err bitreich.org 70 i MIT/X Consortium License Err bitreich.org 70 i Err bitreich.org 70 i-(c) 2015-2018 Hiltjo Posthuma Err bitreich.org 70 i+(c) 2015-2019 Hiltjo Posthuma Err bitreich.org 70 i (c) 2015-2016 Dimitris Papastamos Err bitreich.org 70 i Err bitreich.org 70 i Permission is hereby granted, free of charge, to any person obtaining a Err bitreich.org 70 1diff --git a/stagit-gopher-index.c b/stagit-gopher-index.c /scm/stagit-gopher/file/stagit-gopher-index.c.gph bitreich.org 70 i@@ -163,7 +163,6 @@ writelog(FILE *fp) Err bitreich.org 70 i Err bitreich.org 70 i git_revwalk_new(&w, repo); Err bitreich.org 70 i git_revwalk_push_head(w); Err bitreich.org 70 i- git_revwalk_sorting(w, GIT_SORT_TIME); Err bitreich.org 70 i git_revwalk_simplify_first_parent(w); Err bitreich.org 70 i Err bitreich.org 70 i if (git_revwalk_next(&id, w) || Err bitreich.org 70 1diff --git a/stagit-gopher.1 b/stagit-gopher.1 /scm/stagit-gopher/file/stagit-gopher.1.gph bitreich.org 70 i@@ -1,4 +1,4 @@ Err bitreich.org 70 i-.Dd Januari 21, 2018 Err bitreich.org 70 i+.Dd February 6, 2019 Err bitreich.org 70 i .Dt STAGIT-GOPHER 1 Err bitreich.org 70 i .Os Err bitreich.org 70 i .Sh NAME Err bitreich.org 70 i@@ -50,8 +50,8 @@ Atom XML feed Err bitreich.org 70 i .It files.gph Err bitreich.org 70 i List of files in the latest tree, linking to the file. Err bitreich.org 70 i .It log.gph Err bitreich.org 70 i-List of commits in order of most recent to old of the commits (top to bottom), Err bitreich.org 70 i-each commit links to an index with a diffstat and diff of the commit. Err bitreich.org 70 i+List of commits in reverse chronological applied commit order, each commit Err bitreich.org 70 i+links to a page with a diffstat and diff of the commit. Err bitreich.org 70 i .It refs.gph Err bitreich.org 70 i Lists references of the repository such as branches and tags. Err bitreich.org 70 i .El Err bitreich.org 70 1diff --git a/stagit-gopher.c b/stagit-gopher.c /scm/stagit-gopher/file/stagit-gopher.c.gph bitreich.org 70 i@@ -702,7 +702,6 @@ writelog(FILE *fp, const git_oid *oid) Err bitreich.org 70 i Err bitreich.org 70 i git_revwalk_new(&w, repo); Err bitreich.org 70 i git_revwalk_push(w, oid); Err bitreich.org 70 i- git_revwalk_sorting(w, GIT_SORT_TIME); Err bitreich.org 70 i git_revwalk_simplify_first_parent(w); Err bitreich.org 70 i Err bitreich.org 70 i while (!git_revwalk_next(&id, w)) { Err bitreich.org 70 i@@ -824,7 +823,6 @@ writeatom(FILE *fp) Err bitreich.org 70 i Err bitreich.org 70 i git_revwalk_new(&w, repo); Err bitreich.org 70 i git_revwalk_push_head(w); Err bitreich.org 70 i- git_revwalk_sorting(w, GIT_SORT_TIME); Err bitreich.org 70 i git_revwalk_simplify_first_parent(w); Err bitreich.org 70 i Err bitreich.org 70 i for (i = 0; i < m && !git_revwalk_next(&id, w); i++) { Err bitreich.org 70 .