You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rev_news/drafts/edition-132.md
+114-2Lines changed: 114 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,19 +111,131 @@ This edition covers what happened during the months of January and February 2026
111
111
## Other News
112
112
113
113
__Various__
114
+
+[Git 2.53 Released with New Features and Performance Improvements](https://9to5linux.com/git-2-53-released-with-new-features-and-performance-improvements)
115
+
by Marcus Nestor on 9to5Linux.
116
+
+[The Former CEO of GitHub [Thomas Dohmke] Just Agreed: Git Wasn't Built for This [AI-based coding]](https://opzero.sh/blog/github-ceo-agrees-git-dead)
117
+
by Jeff Cameron on OpZero blog,
118
+
following his "interview" with Claude Opus 4.5.
119
+
The idea is to version code, intent, constraints, and reasoning together,
120
+
and to add semantic reasoning layer through a "context graph".
121
+
+ One one hand this assumes that AI generated code is a viable path to creating software,
122
+
and there would be no technical problems like model collapse,
123
+
or economical problem like cost of training and using LLMs.
124
+
+ On the other hand there exist specialized solutions to help
125
+
version data (like [DVC](https://dvc.org) or [Pachyderm]((https://www.pachyderm.com/)),
126
+
or to version database schema.
114
127
115
128
116
129
__Light reading__
117
130
+[Exploring the .git Directory – How Git Stores Your Code](https://www.git-tower.com/blog/posts/exploring-the-git-directory)
118
131
by Bruno Brito on Tower's Blog.
119
132
+[The Ultimate Guide to Git Config: Fine-Tuning Your Git Experience](https://www.git-tower.com/blog/the-ultimate-guide-to-git-config)
120
133
by Bruno Brito on Tower's Blog.
134
+
+[TIL that pathnames in git configs can be optional](https://neverready.app/blog/2026/02-git-blame-ignore/)
135
+
by Anh Tuan Le on his blog.
136
+
It mentions the fact that as of git 2.52 (Nov 2025),
137
+
you can mark config file paths as optional using the `:(optional)` prefix;
138
+
see the ['pathname' entry in "Values" section of `git config` manpage](https://git-scm.com/docs/git-config#Documentation/git-config.txt-pathname).
139
+
+[Git Reflog Explained: Recover Deleted Commits & Lost Work](https://dev.to/itxshakil/git-reflog-explained-recover-deleted-commits-lost-work-i4n)
140
+
by Shakil Alam on DEV\.to. Has a video version.
141
+
+[I Hate GitHub Actions with Passion](https://xlii.space/eng/i-hate-github-actions-with-passion/)
142
+
by Przemysław Alexander Kamiński on his xlii.space blog.
143
+
+ The main problem is with trying to debug [GitHub Actions](https://github.com/features/actions) problems when the action fails;
144
+
[Act](https://github.com/nektos/act), a command line tool
145
+
to run your GitHub Actions locally using the Docker Engine API, could help there.
146
+
Act was first mentioned in [Git Rev News Edition #113](https://git.github.io/rev_news/2024/07/31/edition-113/).
147
+
+ There is also [WRKFLW](https://github.com/bahdotsh/wrkflw),
148
+
a command-line tool for validating and executing GitHub Actions workflows locally,
149
+
without requiring a full GitHub environment.
150
+
WRKFLW was mentioned in [Git Rev News Edition #126](https://git.github.io/rev_news/2025/08/31/edition-126/).
151
+
+[Git Worktrees with Claude Code, Laravel, and Herd](https://gause.cz/blog/git-worktrees-with-claude-code-laravel-and-herd/)
152
+
by Jakub Gause on his blog (also published [on DEV\.to](https://dev.to/gause/git-worktrees-with-claude-code-laravel-and-herd-49d1)).
153
+
Describes writing a shell script to help (a [laravel-worktrees Claude skill](https://github.com/gausejakub/claude-skills)).
154
+
+[I Built workz: The Zoxide for Git Worktrees That Finally Fixes .env + node_modules Hell in 2026](https://dev.to/rohansx/i-built-workz-the-zoxide-for-git-worktrees-that-finally-fixes-env-nodemodules-hell-in-2026-2dpj)
155
+
by Rohan Sharma on DEV\.to.
156
+
Describes his [workz](https://github.com/rohansx/workz) tool
157
+
that creates a new worktree, and also automatically symlinks 22+ types of dependency dirs
and can launch your AI coding agent directly in the new worktree.
160
+
+[My self-hosted Git workflow with GitGen](https://cybrkyd.com/post/my-self-hosted-git-workflow-with-gitgen/)
161
+
by cybrkyd; it continues [Showcasing my Git repositories on the web](https://cybrkyd.com/post/showcasing-my-git-repositories-on-the-web/)
162
+
from the [previous edition](https://git.github.io/rev_news/2026/01/31/edition-131/).
163
+
+[GitGen](https://git.cybrkyd.com/GitGen/index.html) is a lightweight static website generator
164
+
for local Git repositories written in Python;
165
+
similar tools are [Gitmal](https://github.com/antonmedv/gitmal)
166
+
and [pgit](https://github.com/picosh/pgit), both written in Go.
167
+
+[I Built a Tool That Writes Obituaries for Your Deleted Code](https://dev.to/lakshmisravyavedantham/i-built-a-tool-that-writes-obituaries-for-your-deleted-code-235l) and
168
+
[commit-prophet: I Built a Tool That Predicts Buggy Files Using Git History](https://dev.to/lakshmisravyavedantham/commit-prophet-i-built-a-tool-that-predicts-buggy-files-using-git-history-35mk)
169
+
by Lakshmi Sravya Vedantham on DEV\.to.
170
+
+[I Read 9,000 Lines of a Stranger's Mergetool](https://dev.to/ticktockbent/i-read-9000-lines-of-a-strangers-mergetool-5bf0)
171
+
by Wes on DEV\.to, about the [ec (easy-conflict)](https://github.com/chojs23/ec) tool.
172
+
This is first entry in the [Review Bomb series](https://dev.to/ticktockbent/series/36103),
173
+
where Wes finds under-the-radar projects on GitHub, read the code, contribute something,
174
+
and write it up.
175
+
+[Simplifying Git by Using GitButler](https://blog.gitbutler.com/simplifying-git):
176
+
seeing git state, branching without fear, understanding and using stacked changes,
is a VS Code file explorer which shows only recently modified files
231
+
based on a combination of Git history and your pending changes.
232
+
Written in TypeScript, under MIT license.
233
+
+ See also [Fresh File Explorer - vscode extension for navigating recent changes](https://dev.to/frehu/fresh-file-explorer-vscode-extension-for-navigating-recent-changes-13c1)
0 commit comments