💾 Archived View for lists.flounder.online › patches › threads › 20210316221450.9347-1-johann@qwertqw… captured on 2022-07-16 at 16:25:34. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-04-28)

-=-=-=-=-=-=-

[PATCH mygit v1] correct log order

[PATCH mygit v1] correct log order

From: johann@qwertqwefsday.eu

Date: Tue, 16 Mar 2021 23:14:50 +0100

Message-Id: 20210316221450.9347-1-johann@qwertqwefsday.eu

To: <~aw/patches@lists.sr.ht>

Cc: "Johann150" <johann@qwertqwefsday.eu>

Reply

Export

--------------------------------------

From: Johann150 <johann@qwertqwefsday.eu>

I introduced this mistake in a24c87629debfc0395a9c0c7d4e69f382c0bb26d

by not correctly reading the documentation. This should resolve todo

~aw/mygit/24.

---

src/main.rs | 2 +-

1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs

index 342248f..bd730df 100644

--- a/src/main.rs

+++ b/src/main.rs

@@ -184,7 +184,7 @@ async fn repo_log(req: Request<()>) -> tide::Result {

// show newest commits first

revwalk

- .set_sorting(git2::Sort::TIME | git2::Sort::REVERSE)

+ .set_sorting(git2::Sort::TIME)

.unwrap();

revwalk

--

2.20.1