Introduction
Introduction Statistics Contact Development Disclaimer Help
tchange order of commits in log from most recent to old to applied order - stag…
git clone git://src.adamsgaard.dk/stagit
Log
Files
Refs
README
LICENSE
---
commit 3fbef5c9b0dee2106537a6718e2380eaa6e27f15
parent 583c44395ccc0e052c8db5217bd51fc21f7ffbb7
Author: Hiltjo Posthuma <[email protected]>
Date: Thu, 7 Feb 2019 21:00:06 +0100
change order of commits in log from most recent to old to applied order
Diffstat:
M LICENSE | 2 +-
M stagit-index.c | 1 -
M stagit.1 | 6 +++---
M stagit.c | 2 --
4 files changed, 4 insertions(+), 7 deletions(-)
---
diff --git a/LICENSE b/LICENSE
t@@ -1,6 +1,6 @@
MIT/X Consortium License
-(c) 2015-2018 Hiltjo Posthuma <[email protected]>
+(c) 2015-2019 Hiltjo Posthuma <[email protected]>
(c) 2015-2016 Dimitris Papastamos <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a
diff --git a/stagit-index.c b/stagit-index.c
t@@ -105,7 +105,6 @@ 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);
if (git_revwalk_next(&id, w) ||
diff --git a/stagit.1 b/stagit.1
t@@ -1,4 +1,4 @@
-.Dd Januari 21, 2018
+.Dd February 6, 2019
.Dt STAGIT 1
.Os
.Sh NAME
t@@ -46,8 +46,8 @@ Atom XML feed
.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
diff --git a/stagit.c b/stagit.c
t@@ -606,7 +606,6 @@ writelog(FILE *fp, const git_oid *oid)
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)) {
t@@ -736,7 +735,6 @@ 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++) {
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.