Linklog
A curated collection of links and resources I have found over time.
February 2025
- Git Branching for Small Teams (victoria.dev)
A good git workflow for small teams. Reading it, it happens to be the one we use in my team, and I can confirm it's a very effective one!
- flywhl/logis (github.com)
An interesting library to record ML experiments metadata through commit messages. Even better, it supports a query language to find which commit satisfies a given criterion.
- jj init (v5.chriskrycho.com)
I've been more and more tempted by jujutsu as a drop-in replacement for git. Its default way to handle changes seems so sane compared to git. This article is a very thorough and accessible introduction to how it works, and it definitely nudged me further along the jj train.
- How I Use Git Worktrees (matklad.github.io)
Useful example of a git worktree workflow. Worktrees help avoiding all the stashing and branch hopping a typical workflow would have. You can pull the repository multiple times on different branches and work on different features, review pull requests, run automated tests, etc..., without having to break your flow.
- Jujutsu VCS Introduction and Patterns (kubamartin.com)
Introduction to using Jujutsu and replacing the git frontend. I'm still on the fence about it, but the commit system looks really interesting.
December 2024
- GitHub Actions by Example (www.actionsbyexample.com)
I always have to google Github actions format and snippets, or prompt an LLM for it. This is a collection of examples so you never have to google it again.