Move daily emails into the blog page

This commit is contained in:
Oliver Davies 2025-08-21 00:28:10 +01:00
parent be69398931
commit 1b8441608f
828 changed files with 9 additions and 196 deletions

View file

@ -0,0 +1,23 @@
---
title: Commits are cheap
date: 2024-08-11
permalink: daily/2024/08/11/commits-are-cheap
tags:
- software-development
- git
cta: ~
snippet: |
Commits are cheap. Debugging without a commit isn't.
---
When using a version control system, such as Git, commits are quick and cheap.
I like to make small commits as often as possible whilst working on a task.
For example, when doing test-driven development, I commit my changes wherever the tests are passing or after a refactor.
Each commit is a checkpoint I can easily roll back to if needed.
I've never regretted making a commit, but I've regretted not making one.
Commits are cheap, but debugging without a recent commit is expensive.