githubteacher / developers-july-30-2015

2 stars 7 forks source link

Git commit message #158

Closed bkerrigan closed 9 years ago

bkerrigan commented 9 years ago

Is there any difference between git commit and typing a message in the editor and git commit -m "Message"?

patrickmckenna commented 9 years ago

@bkerrigan The only difference is where you actually write the message: in your editor or on the command line. They're functionally identical, i.e. the actual commit message will be the same with either method.