ido not simplify the history by first-parent - 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 d02b5f776a63c8b808baa548b2cd574439bed547 /scm/stagit-gopher/commit/d02b5f776a63c8b808baa548b2cd574439bed547.gph bitreich.org 70 1parent f15e44cac3916d75969bbc56b3c2162b351e3d32 /scm/stagit-gopher/commit/f15e44cac3916d75969bbc56b3c2162b351e3d32.gph bitreich.org 70 hAuthor: Hiltjo Posthuma URL:mailto:hiltjo@codemadness.org bitreich.org 70 iDate: Wed, 5 May 2021 19:20:21 +0200 Err bitreich.org 70 i Err bitreich.org 70 ido not simplify the history by first-parent Err bitreich.org 70 i Err bitreich.org 70 iReference: Err bitreich.org 70 ihttps://libgit2.org/libgit2/#HEAD/group/revwalk/git_revwalk_simplify_first_parent Err bitreich.org 70 i Err bitreich.org 70 iNoticed on merge commits on: Err bitreich.org 70 ihttps://git.simple-cc.org/scc/ Err bitreich.org 70 i Err bitreich.org 70 iReported by quinq, thanks! Err bitreich.org 70 i Err bitreich.org 70 iDiffstat: Err bitreich.org 70 i M stagit-gopher-index.c | 1 - Err bitreich.org 70 i M stagit-gopher.c | 2 -- Err bitreich.org 70 i Err bitreich.org 70 i2 files changed, 0 insertions(+), 3 deletions(-) Err bitreich.org 70 i--- 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@@ -186,7 +186,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_simplify_first_parent(w); Err bitreich.org 70 i Err bitreich.org 70 i if (git_revwalk_next(&id, w) || Err bitreich.org 70 i git_commit_lookup(&commit, repo, &id)) { 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@@ -836,7 +836,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_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 if (cachefile && !memcmp(&id, &lastoid, sizeof(id))) Err bitreich.org 70 i@@ -966,7 +965,6 @@ writeatom(FILE *fp, int all) Err bitreich.org 70 i if (all) { 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_simplify_first_parent(w); Err bitreich.org 70 i for (i = 0; i < m && !git_revwalk_next(&id, w); i++) { Err bitreich.org 70 i if (!(ci = commitinfo_getbyoid(&id))) Err bitreich.org 70 i break; Err bitreich.org 70 .