Skip to content

Instantly share code, notes, and snippets.

@ericavonb
ericavonb / git-commit-style-guide.md
Last active November 10, 2025 20:35
Git Commit Style Guide

Git Commit Style Guide

Inspiration: Deis Commit Style Guide

I often quote Deis in sections below.

Motivation

It makes going back and reading commits easier. It also allows you to spend less time thinking about what your commit message should be.

@amlel-el-mahrouss
amlel-el-mahrouss / debug_date_qt.cpp
Created August 17, 2025 15:21
A simple helper for date parsing using the Qt framework.
#include <QCoreApplication>
#include <QDate>
#include <QDebug>
#include <iostream>
enum class debug_date : int32_t
{
invalid,
yyyy_mm_dd,
};