DEV Community

Discussion on: What's your commit strategy in personal projects?

Collapse
 
giorgosk profile image
Giorgos Kontopoulos 👀

It is nice to use best practices even on your own or small projects. I usually commit smaller commits (atomic) that can be described in one commit message. If the commit message gets too long perhaps needs a smaller commit and it helps at a latter time when you are wondering what you have done.

For personal projects I usually don't create feature branches but commit directly on main as the decision to merge is usually my own.