DEV Community

Discussion on: My Basic Front-end Development Git workflow Routine

Collapse
 
peter_brown_cc2f497ac1175 profile image
Peter Brown

Commit messages should always have a body detailing changes. It is therefore preferable to use "git commit -a". This will launch the default editor and allow the engineer to write a well formed commit message.

Collapse
 
jameslau profile image
James Lau

Oh didn't see know about the "-a" feature. I'll have to look into that. Thanks!