Skip to content

Commit 18d483c

Browse files
committed
rn-138: Tiny fixes and rephrasings, part 2.
1 parent a0aed2e commit 18d483c

1 file changed

Lines changed: 23 additions & 23 deletions

File tree

‎rev_news/drafts/edition-138.md‎

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ __Light reading__
346346
This article provides systematic survey of tools
347347
that keep issue and review data inside the repository
348348
so it clones and pushes with the code.
349-
Inspired by recent GitHub outage, with issues and pull request threads going dark.
349+
Inspired by the recent GitHub outage, with issues and pull request threads going dark.
350350
+ [Git at any scale](https://cursor.com/blog/git-at-any-scale)
351351
by Vicent Martí on Cursor blog.<br>
352352
See also [How Cursor beat Git's scalability shortcomings](https://www.theregister.com/devops/2026/08/23/how-cursor-beat-gits-scalability-shortcomings/5291421)
@@ -361,22 +361,22 @@ __Light reading__
361361
doing it in a way that's time-based instead of identity-based (new name after some date),
362362
and doing it in such a way that the previous name isn't detectable.
363363
+ The article mentions [Tangled.sh](https://tangled.org), which is
364-
a new social-enabled Git collaboration platform built on top of AT Protocol / ATProto,
365-
only in passing.
366-
It does not address [Radicle](https://radicle.xyz/) or [Grasp](https://gitgrasp.com/)
367-
(other decentralized code hosting and collaboration platforms).
368-
<br>
369-
Tangled was first mentioned in [Git Rev News Edition #125](https://git.github.io/rev_news/2025/07/31/edition-125/),
370-
and most recently in [Edition #137](https://git.github.io/rev_news/2026/07/31/edition-137/).
371-
+ See also [Too many words about DIDs](https://steveklabnik.com/writing/too-many-words-about-dids/)
372-
(“Decentralized Identity” standard) by Steve Klabnik,
373-
mentioned in [Git Rev News Edition #137](https://git.github.io/rev_news/2026/07/31/edition-137/).
364+
a new social-enabled Git collaboration platform built on top of AT Protocol / ATProto,
365+
only in passing.
366+
It does not address other decentralized code hosting and collaboration platforms like
367+
[Radicle](https://radicle.xyz/) or [Grasp](https://gitgrasp.com/).
368+
<br>
369+
Tangled was first mentioned in [Git Rev News Edition #125](https://git.github.io/rev_news/2025/07/31/edition-125/),
370+
and most recently in [Edition #137](https://git.github.io/rev_news/2026/07/31/edition-137/).
371+
+ See also [Too many words about DIDs](https://steveklabnik.com/writing/too-many-words-about-dids/)
372+
(“Decentralized Identity” standard) by Steve Klabnik,
373+
mentioned in [Git Rev News Edition #137](https://git.github.io/rev_news/2026/07/31/edition-137/).
374374
+ [Run your own CI](https://blog.tangled.org/selfhost-ci/)
375-
by oppi.li on Tangled Blog. Possibly inspired by August 17th GitHub outage.
375+
by oppi.li on Tangled Blog. Possibly inspired by the August 17th GitHub outage.
376376
Advertises Tangled (and provides links to articles about CI and Tangled).
377377
+ [Git worktrees are not an isolation boundary for coding agents](https://fletch.sh/blog/git-worktrees-vs-clones-for-ai-agents/)
378378
by Alex Chaplinsky on Fletch Blog.
379-
It is a good addition to all the articles about git worktrees for AI agents,
379+
It is a good addition to all the articles about Git worktrees for AI agents,
380380
and all specialized tools for managing worktrees, mentioned in recent editions.
381381
+ [Git Submodules as a Package Manager](https://nesbitt.io/2026/09/01/git-submodules-as-a-package-manager.html)
382382
by Andrew Nesbitt on his blog.
@@ -425,17 +425,17 @@ __Git tools and sites__
425425
The browser UI is server-rendered HTML/CSS with no JavaScript.
426426
Written in TypeScript, under MIT license.
427427
+ [durable-git](https://github.com/littledivy/durable-git) (formerly dgit)
428-
is a git server for Cloudflare Workers and for your own machines with celld.
428+
is a Git server for Cloudflare Workers and for your own machines with celld.
429429
Each repository is a Durable Object: a small server with a name
430430
and a private SQLite database that holds the repository's objects and refs,
431-
speaks the git smart HTTP protocol to a stock git client,
431+
speaks the Git smart HTTP protocol to a stock Git client,
432432
and renders a cgit-style web interface.
433433
Written in TypeScript, under MIT license.
434434
+ [Gitignore Debugger](https://ignoredebugger.com/) is an on-line service
435435
that helps you find out exactly why Git isn't ignoring your file.
436436
Free, no signup, and everything runs in the browser.
437437
An alternative to `git check-ignore -v`.
438-
+ [drift](https://github.com/aymanbagabas/drift) is a git diff pager with terminal UI:
438+
+ [drift](https://github.com/aymanbagabas/drift) is a Git diff pager with terminal UI:
439439
syntax highlighting, word-level change emphasis, split or unified views,
440440
a file-list modal and a live sidebar you can click and drag
441441
to resize, jump-to-hunk, in-file search, open-in-$EDITOR,
@@ -444,14 +444,14 @@ __Git tools and sites__
444444
or just pipe a diff into it like any other pager.
445445
Written in Rust, under MIT license.
446446
+ [git-knife](https://github.com/TheRealYT/git-knife) is a desktop GUI
447-
for editing git commit metadata directly — message, author date, committer date, author name/email.
447+
for editing Git commit metadata directly — message, author date, committer date, author name/email.
448448
It fills the gap between existing GUIs with some commit editing capabilities
449-
(like GitKraken, Sublime Merge, Fork, lazygit), and tools for editing Git repository
450-
(`git-filter-repo`, `git rebase` env tricks, `git commit-tree`) without GUI.
449+
(like GitKraken, Sublime Merge, Fork, lazygit), and tools for editing a Git repository
450+
(`git-filter-repo`, `git rebase` env tricks, `git commit-tree`) without a GUI.
451451
It never reimplements Git — it shells out to the system `git` CLI
452452
and rebuilds commits with `git commit-tree`, reusing each commit's original tree
453453
so file contents are provably never changed.
454-
Written in Rust (and TypeScript) using Tauri application framework,
454+
Written in Rust (and TypeScript) using the Tauri application framework,
455455
no license provided.
456456
+ [GitComet](https://github.com/Auto-Explore/GitComet) is a Git GUI
457457
built for teams that want fast Git operations
@@ -461,9 +461,9 @@ __Git tools and sites__
461461
Available for Linux, Windows, and macOS.
462462
Written in Rust, under GNU Affero General Public License Version 3 (AGPL-3.0-only).
463463
+ [Maiao](https://github.com/runetes/maiao) brings the power of **stacked pull requests** (or merge requests)
464-
to your git hosting provider, enabling you to break large features
464+
to your Git hosting provider, enabling you to break large features
465465
into small, reviewable commits where each commit becomes its own PR/MR.
466-
It provides Gerrit-style code review workflow
466+
It provides a Gerrit-style code review workflow
467467
for GitHub, GitLab, Gitea, Forgejo, Bitbucket Cloud, and Cursor Origin.
468468
Written in Go, under MIT license.
469469
+ [`tuicr`](https://github.com/agavra/tuicr) is a code review TUI with vim keybindings.
@@ -472,7 +472,7 @@ __Git tools and sites__
472472
+ [Marvelous](https://github.com/stevenjjobson/marvelous) is a fast, standalone
473473
desktop Markdown reader/editor featuring a clean interface
474474
with improved object rendering for lists, tables and mermaid graphs,
475-
and with git awareness and diff review support. Tuned for reading an AI-written wiki.
475+
and with Git awareness and diff review support. Tuned for reading an AI-written wiki.
476476
Written in TypeScript and Rust, under MIT license.
477477

478478

0 commit comments

Comments
 (0)