Skip to content

Instantly share code, notes, and snippets.

View clkefe's full-sized avatar
💻
Building something new

Efe Celik clkefe

💻
Building something new
View GitHub Profile
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 22, 2024 11:21
Conventional Commits Cheatsheet

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
class MyTextFormField extends StatelessWidget {
const MyTextFormField({
@required this.editingController,
this.validator,
this.hintText,
this.icon,
this.enabled = true,