Inspiration: Deis Commit Style Guide
I often quote Deis in sections below.
It makes going back and reading commits easier. It also allows you to spend less time thinking about what your commit message should be.
#include <QCoreApplication> | |
#include <QDate> | |
#include <QDebug> | |
#include <iostream> | |
enum class debug_date : int32_t | |
{ | |
invalid, | |
yyyy_mm_dd, | |
}; |
Inspiration: Deis Commit Style Guide
I often quote Deis in sections below.
It makes going back and reading commits easier. It also allows you to spend less time thinking about what your commit message should be.