MIT/X Consortium License
-(c) 2015-2018 Hiltjo Posthuma <hiltjo@codemadness.org>
+(c) 2015-2019 Hiltjo Posthuma <hiltjo@codemadness.org>
(c) 2015-2016 Dimitris Papastamos <sin@2f30.org>
Permission is hereby granted, free of charge, to any person obtaining a
git_revwalk_new(&w, repo);
git_revwalk_push_head(w);
- git_revwalk_sorting(w, GIT_SORT_TIME);
git_revwalk_simplify_first_parent(w);
if (git_revwalk_next(&id, w) ||
-.Dd Januari 21, 2018
+.Dd February 6, 2019
.Dt STAGIT 1
.Os
.Sh NAME
.It files.html
List of files in the latest tree, linking to the file.
.It log.html
-List of commits in order of most recent to old of the commits (top to bottom),
-each commit links to a page with a diffstat and diff of the commit.
+List of commits in reverse chronological applied commit order, each commit
+links to a page with a diffstat and diff of the commit.
.It refs.html
Lists references of the repository such as branches and tags.
.El
git_revwalk_new(&w, repo);
git_revwalk_push(w, oid);
- git_revwalk_sorting(w, GIT_SORT_TIME);
git_revwalk_simplify_first_parent(w);
while (!git_revwalk_next(&id, w)) {
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++) {