See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| 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, |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"